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.tests</groupId>
|
|
|
|
<artifactId>tests-parent</artifactId>
|
2021-06-29 11:51:22 -04:00
|
|
|
<version>10.0.7-SNAPSHOT</version>
|
2012-11-18 23:57:38 -05:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2009-07-08 15:28:16 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>test-webapps-parent</artifactId>
|
|
|
|
<name>Jetty Tests :: WebApps :: Parent</name>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
2011-10-31 18:42:21 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- DO NOT DEPLOY (or Release) -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
2016-03-07 18:25:54 -05:00
|
|
|
</plugin>
|
2016-10-20 15:48:32 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-10-31 18:42:21 -04:00
|
|
|
</plugins>
|
2009-07-08 15:28:16 -04:00
|
|
|
</build>
|
|
|
|
<modules>
|
|
|
|
<module>test-webapp-rfc2616</module>
|
2017-09-30 16:16:45 -04:00
|
|
|
<module>test-http2-webapp</module>
|
2019-06-12 15:37:13 -04:00
|
|
|
<module>test-felix-webapp</module>
|
2019-08-07 22:04:07 -04:00
|
|
|
<module>test-cdi-common-webapp</module>
|
|
|
|
<module>test-weld-cdi-webapp</module>
|
|
|
|
<module>test-owb-cdi-webapp</module>
|
2020-02-08 20:59:57 -05:00
|
|
|
<module>test-websocket-webapp</module>
|
|
|
|
<module>test-bad-websocket-webapp</module>
|
2020-09-29 04:47:34 -04:00
|
|
|
<module>test-websocket-client-webapp</module>
|
2020-10-15 01:15:57 -04:00
|
|
|
<module>test-websocket-client-provided-webapp</module>
|
2009-07-08 15:28:16 -04:00
|
|
|
</modules>
|
2019-08-07 22:04:07 -04:00
|
|
|
</project>
|