/[projects]/miscJava/Test4Simple/pom.xml
ViewVC logotype

Contents of /miscJava/Test4Simple/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2517 - (show annotations) (download) (as text)
Tue Apr 28 05:54:46 2015 UTC (9 years ago) by torben
File MIME type: text/xml
File size: 4227 byte(s)
Finally - jersey + moxy works :)
1 <project
2 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
5 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
7 <modelVersion>4.0.0</modelVersion>
8 <groupId>dk.thoerup</groupId>
9 <artifactId>Test4Simple</artifactId>
10 <version>1.0</version>
11
12 <packaging>war</packaging>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
17
18 <version.jdk>1.8</version.jdk> <!-- 1.7 for JDK 7 -->
19 <version.mvn.compiler>3.2</version.mvn.compiler>
20 <version.mvn.war.plugin>2.6</version.mvn.war.plugin>
21 <version.jersey>2.15</version.jersey>
22 <version.servlet.api>3.1.0</version.servlet.api> <!-- use 3.0.1 for Tomcat 7 or Java EE 6 (i.e. Glassfish 3.x) -->
23
24 </properties>
25
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <version>3.1</version>
32 <configuration>
33 <source>1.7</source>
34 <target>1.7</target>
35 <showWarnings>true</showWarnings>
36 <showDeprecation>true</showDeprecation>
37 </configuration>
38 <!--Do NOT show depreciation in test compile-->
39 <executions>
40 <execution>
41 <id>default-testCompile</id>
42 <phase>test-compile</phase>
43 <configuration>
44 <showDeprecation>false</showDeprecation>
45 </configuration>
46 <goals>
47 <goal>testCompile</goal>
48 </goals>
49 </execution>
50 </executions>
51 </plugin>
52 </plugins>
53 </build>
54
55
56
57 <dependencies>
58 <dependency>
59 <groupId>javax.websocket</groupId>
60 <artifactId>javax.websocket-api</artifactId>
61 <version>1.0</version>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
65 <groupId>javax.servlet</groupId>
66 <artifactId>javax.servlet-api</artifactId>
67 <version>3.0.1</version>
68 <scope>provided</scope>
69 </dependency>
70 <dependency>
71 <groupId>javax.resource</groupId>
72 <artifactId>javax.resource-api</artifactId>
73 <version>1.7</version>
74 <scope>provided</scope>
75 </dependency>
76
77
78 <dependency>
79 <groupId>com.itextpdf</groupId>
80 <artifactId>itextpdf</artifactId>
81 <version>5.0.6</version>
82 </dependency>
83
84
85 <dependency>
86 <groupId>net.spy</groupId>
87 <artifactId>spymemcached</artifactId>
88 <version>2.11.6</version>
89 </dependency>
90
91 <dependency>
92 <groupId>javax.ws.rs</groupId>
93 <artifactId>javax.ws.rs-api</artifactId>
94 <version>2.0.1</version>
95 </dependency>
96
97 <!-- If deploying on tomcat or other container without a bundled ws-rs implementation -->
98 <dependency>
99 <groupId>org.glassfish.jersey.containers</groupId>
100 <artifactId>jersey-container-servlet</artifactId>
101 <version>${version.jersey}</version>
102 </dependency>
103
104 <dependency>
105 <groupId>org.glassfish.jersey.media</groupId>
106 <artifactId>jersey-media-moxy</artifactId>
107 <version>${version.jersey}</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.glassfish.jersey.media</groupId>
112 <artifactId>jersey-media-json-processing</artifactId>
113 <version>${version.jersey}</version>
114 </dependency>
115 <dependency>
116 <groupId>org.glassfish.jersey.media</groupId>
117 <artifactId>jersey-media-multipart</artifactId>
118 <version>${version.jersey}</version>
119 </dependency>
120 <dependency>
121 <groupId>org.glassfish.jersey.media</groupId>
122 <artifactId>jersey-media-sse</artifactId>
123 <version>${version.jersey}</version>
124 </dependency>
125
126 </dependencies>
127
128
129
130 <repositories>
131 <repository>
132 <id>sonatype-nexus-snapshots</id>
133 <name>Sonatype Nexus Snapshots</name>
134 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
135 <releases>
136 <enabled>false</enabled>
137 </releases>
138 <snapshots>
139 <enabled>true</enabled>
140 </snapshots>
141 </repository>
142 </repositories>
143
144 </project>

  ViewVC Help
Powered by ViewVC 1.1.20