forked from resteasy/resteasy-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·114 lines (98 loc) · 3.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<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>
<version>3.1.0-SNAPSHOT</version>
<!-- 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-jaxrs-2.0-workbook</module>
<module>oauth1-examples</module>
<module>oauth2-as7-example</module>
<module>oauth-servlet-test</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>
<module>jsapi-servlet-test</module>
</modules>
<dependencies>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jsapi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxb-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>async-http-servlet-3.0</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-oauth</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.7</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>