2011-09-05 05:18:47 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-01-08 17:47:01 -05:00
|
|
|
<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">
|
2011-09-05 05:18:47 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2016-10-14 13:39:37 -04:00
|
|
|
<version>9.3.13.v20161014</version>
|
2011-09-05 05:18:47 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-06-12 15:43:29 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-parent</artifactId>
|
|
|
|
<name>Jetty :: Websocket :: Parent</name>
|
|
|
|
<packaging>pom</packaging>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2013-12-11 15:21:04 -05:00
|
|
|
|
2012-06-12 15:43:29 -04:00
|
|
|
<modules>
|
2013-12-11 15:21:04 -05:00
|
|
|
<module>websocket-common</module>
|
|
|
|
<module>websocket-api</module>
|
|
|
|
<module>websocket-client</module>
|
|
|
|
<module>websocket-server</module>
|
|
|
|
<module>websocket-servlet</module>
|
|
|
|
<module>javax-websocket-client-impl</module>
|
|
|
|
<module>javax-websocket-server-impl</module>
|
2012-06-12 15:43:29 -04:00
|
|
|
</modules>
|
2011-09-05 05:18:47 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<onlyAnalyze>org.eclipse.jetty.websocket.*</onlyAnalyze>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2016-06-13 17:10:04 -04:00
|
|
|
<!--
|
2013-05-09 17:46:47 -04:00
|
|
|
<plugin>
|
2013-12-11 15:21:04 -05:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>clirr-maven-plugin</artifactId>
|
2016-06-13 17:10:04 -04:00
|
|
|
<version>2.7</version>
|
2013-12-11 15:21:04 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compare-api</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>clirr</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<minSeverity>info</minSeverity>
|
|
|
|
<comparisonVersion>9.1.0.v20131115</comparisonVersion>
|
|
|
|
</configuration>
|
2013-05-09 17:46:47 -04:00
|
|
|
</plugin>
|
2016-06-13 17:10:04 -04:00
|
|
|
-->
|
2011-09-05 05:18:47 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-11-08 20:22:06 -05:00
|
|
|
</project>
|