jetty.project/examples/pom.xml

50 lines
1.5 KiB
XML
Raw Normal View History

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">
2012-11-18 23:57:38 -05:00
<parent>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-project</artifactId>
<version>10.0.0-SNAPSHOT</version>
2012-11-18 23:57:38 -05:00
</parent>
<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>
<properties>
<sonar.skip>true</sonar.skip>
</properties>
2012-11-18 23:57:38 -05:00
<build>
<plugins>
2019-04-09 17:26:38 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<!-- No point deploying example projects -->
<skip>true</skip>
</configuration>
</plugin>
2012-11-18 23:57:38 -05:00
<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>
2012-11-18 23:57:38 -05:00
<modules>
2012-11-20 13:25:38 -05: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>