Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2012-07-26 17:38:55 +0000
committerJoakim Erdfelt2012-07-26 17:38:55 +0000
commitacabe78101e242bb84af9514a5a79892298ed63e (patch)
treeb6a66698d84e023777cc8f360f431879dae737e5 /pom.xml
parentdb2570c2ee54f8af08cc9a7eef8bee413717ccfc (diff)
downloadorg.eclipse.jetty.project-acabe78101e242bb84af9514a5a79892298ed63e.tar.gz
org.eclipse.jetty.project-acabe78101e242bb84af9514a5a79892298ed63e.tar.xz
org.eclipse.jetty.project-acabe78101e242bb84af9514a5a79892298ed63e.zip
Adding 'release' profile to hold release only module build related tasks.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml87
1 files changed, 12 insertions, 75 deletions
diff --git a/pom.xml b/pom.xml
index c1f0da7398..4755226c87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -387,11 +387,9 @@
<module>jetty-start</module>
<module>jetty-nested</module>
<module>jetty-overlay-deployer</module>
- <module>jetty-osgi</module>
<module>jetty-nosql</module>
<module>jetty-http-spi</module>
<module>jetty-jsp</module>
- <module>jetty-distribution</module>
<module>test-jetty-nested</module>
<module>test-jetty-servlet</module>
<module>example-async-rest</module>
@@ -506,9 +504,9 @@
<version>4.8.1</version>
</dependency>
<dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-all</artifactId>
- <version>1.1</version>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-all</artifactId>
+ <version>1.1</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
@@ -526,20 +524,16 @@
-->
<profiles>
<profile>
- <!--
- Moves the jetty-osgi build tree to a profile called 'osgi'.
- It is active by default, but being in a profile allows it to be
- disabled via the "-P-osgi" command line on maven (if need be).
- -->
+ <id>release</id>
+ <modules>
+ <!--
+ <module>jetty-aggregate</module>
+ -->
+ <module>jetty-distribution</module>
+ </modules>
+ </profile>
+ <profile>
<id>osgi</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <!--
- <file>
- <exists>${basedir}/pom.xml</exists>
- </file>
- -->
- </activation>
<modules>
<module>jetty-osgi</module>
</modules>
@@ -571,63 +565,6 @@
</build>
</profile>
<profile>
- <id>cobertura</id>
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <configuration>
- <maxmem>512m</maxmem>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <reportSets>
- <reportSet>
- <id>just-javadoc-no-aggregate</id>
- <reports>
- <report>javadoc</report>
- </reports>
- <inherited>true</inherited>
- <configuration>
- <minmemory>256m</minmemory>
- <maxmemory>1g</maxmemory>
- <excludePackageNames>com.acme</excludePackageNames>
- <links>
- <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
- <link>http://java.sun.com/javaee/5/docs/api</link>
- <link>http://junit.sourceforge.net/javadoc/</link>
- </links>
- <tags>
- <tag>
- <name>org.apache.xbean.XBean</name>
- <placement>X</placement>
- <head />
- </tag>
- </tags>
- </configuration>
- </reportSet>
- </reportSets>
- </plugin>
- </plugins>
- </reporting>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <testFailureIgnore>true</testFailureIgnore>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- </profile>
- <profile>
<id>maven-3</id>
<activation>
<file>

Back to the top