Skip to content

Commit 4b5ad06

Browse files
committed
RestEasy Tutorial, CRUD Services example
1 parent 4535831 commit 4b5ad06

File tree

12 files changed

+979
-0
lines changed

12 files changed

+979
-0
lines changed

RestEasy Example/pom.xml

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.baeldung</groupId>
8+
<artifactId>resteasy-tutorial</artifactId>
9+
<version>1.0</version>
10+
<packaging>war</packaging>
11+
12+
<repositories>
13+
<repository>
14+
<id>jboss</id>
15+
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
16+
</repository>
17+
</repositories>
18+
19+
<properties>
20+
<resteasy.version>3.0.14.Final</resteasy.version>
21+
<resteasy.scope>runtime</resteasy.scope>
22+
</properties>
23+
24+
<build>
25+
<finalName>RestEasyTutorial</finalName>
26+
<plugins>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-compiler-plugin</artifactId>
30+
<configuration>
31+
<source>1.8</source>
32+
<target>1.8</target>
33+
</configuration>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
38+
<dependencies>
39+
<!-- core library -->
40+
<dependency>
41+
<groupId>org.jboss.resteasy</groupId>
42+
<artifactId>jaxrs-api</artifactId>
43+
<version>3.0.12.Final</version>
44+
<scope>${resteasy.scope}</scope>
45+
</dependency>
46+
47+
<dependency>
48+
<groupId>org.jboss.resteasy</groupId>
49+
<artifactId>resteasy-servlet-initializer</artifactId>
50+
<version>${resteasy.version}</version>
51+
<scope>${resteasy.scope}</scope>
52+
<exclusions>
53+
<exclusion>
54+
<artifactId>jboss-jaxrs-api_2.0_spec</artifactId>
55+
<groupId>org.jboss.spec.javax.ws.rs</groupId>
56+
</exclusion>
57+
</exclusions>
58+
</dependency>
59+
60+
<dependency>
61+
<groupId>org.jboss.resteasy</groupId>
62+
<artifactId>resteasy-client</artifactId>
63+
<version>${resteasy.version}</version>
64+
<scope>${resteasy.scope}</scope>
65+
</dependency>
66+
67+
68+
<dependency>
69+
<groupId>javax.ws.rs</groupId>
70+
<artifactId>javax.ws.rs-api</artifactId>
71+
<version>2.0.1</version>
72+
</dependency>
73+
74+
<dependency>
75+
<groupId>org.jboss.resteasy</groupId>
76+
<artifactId>resteasy-jackson-provider</artifactId>
77+
<version>${resteasy.version}</version>
78+
<scope>${resteasy.scope}</scope>
79+
</dependency>
80+
81+
<dependency>
82+
<groupId>org.jboss.resteasy</groupId>
83+
<artifactId>resteasy-jaxb-provider</artifactId>
84+
<version>${resteasy.version}</version>
85+
<scope>${resteasy.scope}</scope>
86+
</dependency>
87+
88+
</dependencies>
89+
90+
91+
</project>

0 commit comments

Comments
 (0)