69 lines
2.3 KiB
XML
69 lines
2.3 KiB
XML
<?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>
|
|
<version>12.0.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
<artifactId>tests</artifactId>
|
|
<name>Jetty Tests :: Parent</name>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<spotbugs.skip>true</spotbugs.skip>
|
|
</properties>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<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-source-plugin</artifactId>
|
|
<configuration>
|
|
<!-- no need of sources for test jars -->
|
|
<skipSource>true</skipSource>
|
|
</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>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
<modules>
|
|
<module>jetty-ee9-test-maven-plugin</module>
|
|
<module>jetty-ee10-test-maven-plugin</module>
|
|
<!-- TODO -->
|
|
<!-- module>jetty-jmh</module -->
|
|
<!-- module>test-webapps</module -->
|
|
<!-- module>test-distribution</module -->
|
|
<!-- module>test-jpms</module -->
|
|
</modules>
|
|
<!-- TODO cannot rely on ee9 at top level -->
|
|
<!-- <dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
<artifactId>jetty-ee9-bom</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement> -->
|
|
</project>
|