Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2012-04-02 15:21:22 +0000
committerJesse McConnell2012-04-02 15:21:22 +0000
commit5b2d703a042c4e99dad062803340d0e909717481 (patch)
tree20111c95f8fcaeb3a574d85d803c4cbaff25e286 /jetty-npn
parentd3b6384c37abd481bfc53824eef7a89bec74090f (diff)
downloadorg.eclipse.jetty.project-5b2d703a042c4e99dad062803340d0e909717481.tar.gz
org.eclipse.jetty.project-5b2d703a042c4e99dad062803340d0e909717481.tar.xz
org.eclipse.jetty.project-5b2d703a042c4e99dad062803340d0e909717481.zip
remove jetty-npn from build and release separately
Diffstat (limited to 'jetty-npn')
-rw-r--r--jetty-npn/pom.xml26
1 files changed, 24 insertions, 2 deletions
diff --git a/jetty-npn/pom.xml b/jetty-npn/pom.xml
index b251398c1e..d491b76448 100644
--- a/jetty-npn/pom.xml
+++ b/jetty-npn/pom.xml
@@ -4,13 +4,35 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-project</artifactId>
- <version>7.6.2-SNAPSHOT</version>
+ <artifactId>jetty-parent</artifactId>
+ <version>19</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.jetty.npn</groupId>
<artifactId>npn-api</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
<name>Jetty :: Next Protocol Negotiation :: API</name>
+ <scm>
+ <connection>scm:git:http://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git</connection>
+ <developerConnection>scm:git:ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project.git</developerConnection>
+ <url>http://git.eclipse.org/c/jetty/org.eclipse.jetty.project.git/tree/jetty-npn</url>
+ </scm>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <version>2.2.1</version>
+ <configuration>
+ <useReleaseProfile>false</useReleaseProfile>
+ <goals>deploy</goals>
+ <arguments>-Peclipse-release</arguments>
+ <preparationGoals>clean install</preparationGoals>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top