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

Contents of /miscJava/Test3/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2513 - (show annotations) (download) (as text)
Sat Apr 25 21:18:52 2015 UTC (9 years ago) by torben
File MIME type: text/xml
File size: 3563 byte(s)
Adding jax-rs sample
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>Test3</artifactId>
10 <version>1.0</version>
11
12 <packaging>war</packaging>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>3.1</version>
24 <configuration>
25 <source>1.7</source>
26 <target>1.7</target>
27 <showWarnings>true</showWarnings>
28 <showDeprecation>true</showDeprecation>
29 </configuration>
30 <!--Do NOT show depreciation in test compile-->
31 <executions>
32 <execution>
33 <id>default-testCompile</id>
34 <phase>test-compile</phase>
35 <configuration>
36 <showDeprecation>false</showDeprecation>
37 </configuration>
38 <goals>
39 <goal>testCompile</goal>
40 </goals>
41 </execution>
42 </executions>
43 </plugin>
44 </plugins>
45 </build>
46
47
48 <dependencies>
49 <dependency>
50 <groupId>javax.websocket</groupId>
51 <artifactId>javax.websocket-api</artifactId>
52 <version>1.0</version>
53 <scope>provided</scope>
54 </dependency>
55 <dependency>
56 <groupId>javax.servlet</groupId>
57 <artifactId>javax.servlet-api</artifactId>
58 <version>3.0.1</version>
59 <scope>provided</scope>
60 </dependency>
61 <dependency>
62 <groupId>javax.ejb</groupId>
63 <artifactId>javax.ejb-api</artifactId>
64 <version>3.2</version>
65 <scope>provided</scope>
66 </dependency>
67 <dependency>
68 <groupId>javax.jms</groupId>
69 <artifactId>javax.jms-api</artifactId>
70 <version>2.0.1</version>
71 <scope>provided</scope>
72 </dependency>
73 <dependency>
74 <groupId>javax.resource</groupId>
75 <artifactId>javax.resource-api</artifactId>
76 <version>1.7</version>
77 <scope>provided</scope>
78 </dependency>
79 <dependency>
80 <groupId>javax.enterprise.concurrent</groupId>
81 <artifactId>javax.enterprise.concurrent-api</artifactId>
82 <version>1.0</version>
83 <scope>provided</scope>
84 </dependency>
85
86
87 <dependency>
88 <groupId>com.itextpdf</groupId>
89 <artifactId>itextpdf</artifactId>
90 <version>5.0.6</version>
91 </dependency>
92
93
94 <dependency>
95 <groupId>net.spy</groupId>
96 <artifactId>spymemcached</artifactId>
97 <version>2.11.6</version>
98 </dependency>
99
100 <dependency>
101 <groupId>javax.ws.rs</groupId>
102 <artifactId>javax.ws.rs-api</artifactId>
103 <version>2.0.1</version>
104 <scope>provided</scope>
105 </dependency>
106 <!--
107 If deploying on tomcat or other container without a bundled ws-rs implementation
108 <dependency>
109 <groupId>org.glassfish.jersey.containers</groupId>
110 <artifactId>jersey-container-servlet</artifactId>
111 <version>2.17</version>
112 </dependency>
113 -->
114
115
116 </dependencies>
117
118
119
120 <repositories>
121 <repository>
122 <id>sonatype-nexus-snapshots</id>
123 <name>Sonatype Nexus Snapshots</name>
124 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
125 <releases>
126 <enabled>false</enabled>
127 </releases>
128 <snapshots>
129 <enabled>true</enabled>
130 </snapshots>
131 </repository>
132 </repositories>
133
134 </project>

  ViewVC Help
Powered by ViewVC 1.1.20