2009-07-08 19:28:16 +00: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>
|
2021-02-19 13:06:42 -06:00
|
|
|
<version>10.0.2-SNAPSHOT</version>
|
2012-11-19 15:57:38 +11:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2009-07-08 19:28:16 +00:00
|
|
|
</parent>
|
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>tests-parent</artifactId>
|
|
|
|
<name>Jetty Tests :: Parent</name>
|
|
|
|
<packaging>pom</packaging>
|
2020-12-11 11:47:26 +10:00
|
|
|
<properties>
|
|
|
|
<spotbugs.skip>true</spotbugs.skip>
|
|
|
|
</properties>
|
2009-07-08 19:28:16 +00:00
|
|
|
<build>
|
2016-03-24 16:09:05 -07:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2017-05-12 07:51:35 -07:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point deploying testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-04-19 10:27:18 +10:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- no need of sources for test jars -->
|
|
|
|
<skipSource>true</skipSource>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-05-12 07:51:35 -07:00
|
|
|
<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>
|
2016-03-24 16:09:05 -07:00
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2009-07-08 19:28:16 +00:00
|
|
|
</build>
|
|
|
|
<modules>
|
2018-10-29 17:14:59 +10:00
|
|
|
<module>jetty-jmh</module>
|
2018-11-22 12:37:35 +01:00
|
|
|
<module>jetty-http-tools</module>
|
2009-07-08 19:28:16 +00:00
|
|
|
<module>test-webapps</module>
|
2010-01-26 01:37:03 +00:00
|
|
|
<module>test-sessions</module>
|
2010-05-29 18:14:52 +00:00
|
|
|
<module>test-loginservice</module>
|
2013-11-29 17:33:05 +11:00
|
|
|
<module>test-integration</module>
|
2014-08-29 17:35:26 +10:00
|
|
|
<module>test-quickstart</module>
|
2015-01-19 14:04:45 -07:00
|
|
|
<module>test-jmx</module>
|
2015-02-05 13:17:03 +01:00
|
|
|
<module>test-http-client-transport</module>
|
2018-09-24 19:24:49 +10:00
|
|
|
<module>test-distribution</module>
|
2020-09-28 09:08:35 -05:00
|
|
|
<module>test-cdi</module>
|
2009-07-08 19:28:16 +00:00
|
|
|
</modules>
|
|
|
|
</project>
|