Skip to content

Commit 6db8076

Browse files
committed
adding pom and info on uploading jetty-repacked-5 to maven central
1 parent 1dc071f commit 6db8076

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

third_party/java/jetty/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
When modifying the jetty-repacked-5 jar, here's how to upload it to maven central:
2+
3+
mvn gpg:sign-and-deploy-file -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=sonatype-nexus-staging -DpomFile=jetty-repacked-5.pom -Dfile=jetty-repacked-5.jar -Dfile=jetty-repacked-5-sources.jar
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<?xml version="1.0" encoding="Windows-1252"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>org.seleniumhq.selenium</groupId>
7+
<artifactId>jetty-rc-repacked</artifactId>
8+
<version>5</version>
9+
10+
<name>selenium-jetty-rc-repacked</name>
11+
<description>Browser automation framework dependency on jetty</description>
12+
<url>http://selenium.googlecode.com/</url>
13+
14+
<licenses>
15+
<license>
16+
<name>The Apache Software License, Version 2.0</name>
17+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
18+
<distribution>repo</distribution>
19+
</license>
20+
</licenses>
21+
22+
<developers>
23+
<developer>
24+
<id>simon.m.stewart</id>
25+
<name>Simon Stewart</name>
26+
<roles>
27+
<role>Owner</role>
28+
</roles>
29+
</developer>
30+
<developer>
31+
<id>lsemerau</id>
32+
<name>Luke Inman-Semerau</name>
33+
<roles>
34+
<role>Committer</role>
35+
</roles>
36+
</developer>
37+
</developers>
38+
39+
<scm>
40+
<connection>scm:git:http://selenium.googlecode.com/git</connection>
41+
<developerConnection>scm:git:https://selenium.googlecode.com/git</developerConnection>
42+
<url>http://selenium.googlecode.com/git</url>
43+
</scm>
44+
<profiles>
45+
<profile>
46+
<id>sign</id>
47+
<build>
48+
<plugins>
49+
<!-- See http://maven.apache.org/plugins/maven-gpg-plugin/ -->
50+
<plugin>
51+
<artifactId>maven-gpg-plugin</artifactId>
52+
<version>1.4</version>
53+
<executions>
54+
<execution>
55+
<phase>install</phase>
56+
<goals>
57+
<goal>sign</goal>
58+
</goals>
59+
</execution>
60+
</executions>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
</profile>
65+
</profiles>
66+
<distributionManagement>
67+
<snapshotRepository>
68+
<id>sonatype-nexus-snapshots</id>
69+
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
70+
</snapshotRepository>
71+
<repository>
72+
<id>sonatype-nexus-staging</id>
73+
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
74+
</repository>
75+
</distributionManagement>
76+
</project>

0 commit comments

Comments
 (0)