2012-11-18 23:57:38 -05: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">
|
|
|
|
<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>
|
|
|
|
</parent>
|
2017-03-06 15:55:36 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-11-20 13:25:38 -05:00
|
|
|
<groupId>org.eclipse.jetty.examples</groupId>
|
2012-11-18 23:57:38 -05:00
|
|
|
<artifactId>examples-parent</artifactId>
|
|
|
|
<name>Jetty Examples :: Parent</name>
|
|
|
|
<packaging>pom</packaging>
|
2018-05-01 04:16:07 -04:00
|
|
|
<properties>
|
|
|
|
<sonar.skip>true</sonar.skip>
|
|
|
|
</properties>
|
2012-11-18 23:57:38 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No Point running Findbugs on example projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<modules>
|
2012-11-20 13:25:38 -05:00
|
|
|
<!--
|
2016-06-06 15:28:51 -04:00
|
|
|
- The async-rest and embedded are examples that have historical locations,
|
2012-11-20 13:26:17 -05:00
|
|
|
- new ones should appear nested under o.e.jetty.examples groupId
|
2012-11-20 13:25:38 -05:00
|
|
|
-->
|
2012-11-18 23:57:38 -05:00
|
|
|
<module>async-rest</module>
|
|
|
|
<module>embedded</module>
|
|
|
|
</modules>
|
|
|
|
</project>
|