2009-07-08 15:28:16 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2016-04-29 14:47:15 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2012-11-18 23:57:38 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2009-07-08 15:28:16 -04:00
|
|
|
</parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>tests-parent</artifactId>
|
|
|
|
<name>Jetty Tests :: Parent</name>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2009-07-08 15:28:16 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
2016-03-24 19:09:05 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2017-05-12 10:51:35 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point deploying testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point building javadoc on testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No Point running Findbugs on testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-03-24 19:09:05 -04:00
|
|
|
<plugin>
|
2017-06-27 17:15:19 -04:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
2016-03-24 19:09:05 -04:00
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point running clirr on test projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2009-07-08 15:28:16 -04:00
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>test-webapps</module>
|
2010-01-25 20:37:03 -05:00
|
|
|
<module>test-sessions</module>
|
2010-05-29 14:14:52 -04:00
|
|
|
<module>test-loginservice</module>
|
2013-11-29 01:33:05 -05:00
|
|
|
<module>test-integration</module>
|
2014-08-29 03:35:26 -04:00
|
|
|
<module>test-quickstart</module>
|
2015-01-19 16:04:45 -05:00
|
|
|
<module>test-jmx</module>
|
2015-02-05 07:17:03 -05:00
|
|
|
<module>test-http-client-transport</module>
|
2009-07-08 15:28:16 -04:00
|
|
|
</modules>
|
|
|
|
</project>
|