forked from resteasy/resteasy-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·48 lines (45 loc) · 1.7 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<project>
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>3.1.0-SNAPSHOT</version>
</parent>
<name>Resteasy Examples</name>
<description/>
<url>http://wiki.jboss.org/wiki/Wiki.jsp?page=RESTeasyJAXRS</url>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.resteasy</groupId>
<artifactId>testable-examples-pom</artifactId>
<packaging>pom</packaging>
<!-- this is only here for RESTEasy automated testing of examples build. You can remove if you are copying this
pom.xml as a template -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>jaxrs2-async-pubsub-example</module>
<module>jaxb-json</module>
<module>guice-hello</module>
<module>async-job-service</module>
<module>resteasy-springMVC</module>
<module>oreilly-workbook</module>
<module>oreilly-jaxrs-2.0-workbook</module>
<module>oauth1-examples</module>
<module>oauth2-as7-example</module>
<module>examples-jsapi</module>
<module>smime</module>
<module>digital-signatures</module>
<module>jaxrs-2.0/simple-client</module>
<module>jaxrs-2.0/server-async-http</module>
<module>wadl-example</module>
<module>spring-hibernate-contacts</module>
</modules>
</project>