jetty.project/jetty-ee10/jetty-ee10-tests/pom.xml

54 lines
1.7 KiB
XML
Raw Normal View History

<?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">
<parent>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10</artifactId>
<version>12.0.0-SNAPSHOT</version>
2022-06-28 19:44:05 -04:00
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jetty-ee10-tests</artifactId>
<name>EE10 :: Tests :: Parent</name>
<packaging>pom</packaging>
<properties>
<sonar.skip>true</sonar.skip>
</properties>
<modules>
<module>test-bad-websocket-webapp</module>
<!-- TODO <module>test-cdi</module>-->
<!-- TODO <module>test-http2-webapp</module>-->
<!-- TODO <module>test-http-client-transport</module>-->
<!-- TODO <module>test-integration</module>-->
<module>test-jmx</module>
2022-06-28 19:44:05 -04:00
<module>test-jndi</module>
<!-- TODO <module>test-loginservice</module>-->
<!-- TODO <module>test-quickstart</module>-->
<module>test-websocket-client-provided-webapp</module>
<module>test-websocket-client-webapp</module>
<module>test-websocket-webapp</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- DO NOT DEPLOY (or Release) -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>