Skip to content

Commit

Permalink
adding pom and info on uploading jetty-repacked-5 to maven central
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Aug 25, 2014
1 parent 1dc071f commit 6db8076
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
3 changes: 3 additions & 0 deletions third_party/java/jetty/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
When modifying the jetty-repacked-5 jar, here's how to upload it to maven central:

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
76 changes: 76 additions & 0 deletions third_party/java/jetty/jetty-repacked-5.pom
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="Windows-1252"?>
<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">

<modelVersion>4.0.0</modelVersion>

<groupId>org.seleniumhq.selenium</groupId>
<artifactId>jetty-rc-repacked</artifactId>
<version>5</version>

<name>selenium-jetty-rc-repacked</name>
<description>Browser automation framework dependency on jetty</description>
<url>http://selenium.googlecode.com/</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>simon.m.stewart</id>
<name>Simon Stewart</name>
<roles>
<role>Owner</role>
</roles>
</developer>
<developer>
<id>lsemerau</id>
<name>Luke Inman-Semerau</name>
<roles>
<role>Committer</role>
</roles>
</developer>
</developers>

<scm>
<connection>scm:git:http://selenium.googlecode.com/git</connection>
<developerConnection>scm:git:https://selenium.googlecode.com/git</developerConnection>
<url>http://selenium.googlecode.com/git</url>
</scm>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<!-- See http://maven.apache.org/plugins/maven-gpg-plugin/ -->
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>

0 comments on commit 6db8076

Please sign in to comment.