/[projects]/dao/DaoAdresseVedligehold/pom.xml
ViewVC logotype

Contents of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3003 - (show annotations) (download) (as text)
Tue Apr 19 12:36:31 2016 UTC (8 years ago) by torben
File MIME type: text/xml
File size: 8106 byte(s)
First working edition of a dawa version
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>dk.daoas</groupId>
5 <artifactId>DaoAdresseVedligehold</artifactId>
6 <version>1.0</version>
7 <packaging>war</packaging>
8 <scm>
9 <connection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseVedligehold</connection>
10 <developerConnection>scm:svn:http://svn.t-hoerup.dk/repos/project/dao/DaoAdresseVedligehold</developerConnection>
11 <tag>HEAD</tag>
12 <url>http://svn.t-hoerup.dk/viewvc/projects/dao</url>
13 </scm>
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
17
18 <version.jersey>2.22.1</version.jersey>
19 </properties>
20 <build>
21
22 <plugins>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-compiler-plugin</artifactId>
26 <version>3.1</version>
27 <configuration>
28 <source>1.7</source>
29 <target>1.7</target>
30 <showWarnings>true</showWarnings>
31 <showDeprecation>true</showDeprecation>
32
33 <!-- be strict regarding warnings -->
34 <compilerArguments>
35 <Werror />
36 <!-- <Xlint:all />-->
37 </compilerArguments>
38
39 </configuration>
40 <!--Do NOT show depreciation in test compile -->
41 <executions>
42 <execution>
43 <id>default-testCompile</id>
44 <phase>test-compile</phase>
45 <configuration>
46 <showDeprecation>false</showDeprecation>
47 </configuration>
48 <goals>
49 <goal>testCompile</goal>
50 </goals>
51 </execution>
52 </executions>
53 </plugin>
54 <!-- <plugin>
55 <groupId>org.codehaus.mojo</groupId>
56 <artifactId>buildnumber-maven-plugin</artifactId>
57 <version>1.3</version>
58 <executions>
59 <execution>
60 <phase>validate</phase>
61 <goals>
62 <goal>create</goal>
63 </goals>
64 </execution>
65 </executions>
66 <configuration>
67 <doCheck>false</doCheck>
68 <doUpdate>true</doUpdate>
69 </configuration>
70 </plugin>
71 -->
72
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-war-plugin</artifactId>
76 <version>2.6</version>
77 <configuration>
78 <archive>
79 <manifestEntries>
80 <SCM-Revision>${prefix.revision}</SCM-Revision>
81 <Build-Time>${maven.build.timestamp}</Build-Time>
82 </manifestEntries>
83 </archive>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>findbugs-maven-plugin</artifactId>
89 <version>3.0.3</version>
90 </plugin>
91 </plugins>
92 </build>
93
94 <dependencies>
95 <dependency>
96 <groupId>javax.servlet</groupId>
97 <artifactId>javax.servlet-api</artifactId>
98 <version>3.0.1</version>
99 <scope>provided</scope>
100 </dependency>
101
102 <dependency>
103 <groupId>org.apache.commons</groupId>
104 <artifactId>commons-lang3</artifactId>
105 <version>3.3.2</version>
106 </dependency>
107 <dependency>
108 <groupId>commons-fileupload</groupId>
109 <artifactId>commons-fileupload</artifactId>
110 <version>1.3.1</version>
111 </dependency>
112 <!--
113 <dependency>
114 <groupId>dk.thoerup</groupId>
115 <artifactId>CircuitBreaker</artifactId>
116 <version>1.1.1</version>
117 </dependency>
118 -->
119
120 <dependency>
121 <groupId>dk.thoerup</groupId>
122 <artifactId>WebConfig</artifactId>
123 <version>1.0</version>
124 </dependency>
125
126
127 <dependency>
128 <groupId>com.google.code.gson</groupId>
129 <artifactId>gson</artifactId>
130 <version>2.3.1</version>
131 </dependency>
132
133 <dependency>
134 <groupId>org.json</groupId>
135 <artifactId>json</artifactId>
136 <version>20160212</version>
137 </dependency>
138
139
140 <dependency>
141 <groupId>com.google.guava</groupId>
142 <artifactId>guava</artifactId>
143 <version>18.0</version>
144 </dependency>
145
146 <dependency>
147 <groupId>com.sun.mail</groupId>
148 <artifactId>javax.mail</artifactId>
149 <version>1.4.5</version>
150 </dependency>
151
152 <!-- contains ags.utils.dataStructures.trees.thirdGenKD -->
153 <dependency>
154 <groupId>com.nitayjoffe.thirdparty.net.robowiki.knn</groupId>
155 <artifactId>knn-benchmark</artifactId>
156 <version>0.1</version>
157 </dependency>
158
159 <dependency>
160 <groupId>javax.ws.rs</groupId>
161 <artifactId>javax.ws.rs-api</artifactId>
162 <version>2.0.1</version>
163 </dependency>
164 <!-- If deploying on tomcat or other container without a bundled ws-rs implementation -->
165 <dependency>
166 <groupId>org.glassfish.jersey.containers</groupId>
167 <artifactId>jersey-container-servlet</artifactId>
168 <version>${version.jersey}</version>
169 </dependency>
170 <!--
171 <dependency>
172 <groupId>org.glassfish.jersey.media</groupId>
173 <artifactId>jersey-media-moxy</artifactId>
174 <version>${version.jersey}</version>
175 </dependency>
176
177 <dependency>
178 <groupId>org.glassfish.jersey.media</groupId>
179 <artifactId>jersey-media-json-processing</artifactId>
180 <version>${version.jersey}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.glassfish.jersey.media</groupId>
184 <artifactId>jersey-media-multipart</artifactId>
185 <version>${version.jersey}</version>
186 </dependency>
187 <dependency>
188 <groupId>org.glassfish.jersey.media</groupId>
189 <artifactId>jersey-media-sse</artifactId>
190 <version>${version.jersey}</version>
191 </dependency>
192
193 -->
194 <!-- webjars -->
195 <dependency>
196 <groupId>org.webjars</groupId>
197 <artifactId>jquery</artifactId>
198 <version>2.1.4</version>
199 </dependency>
200 <dependency>
201 <groupId>org.webjars</groupId>
202 <artifactId>jquery-ui</artifactId>
203 <version>1.11.4</version>
204 </dependency>
205 <dependency>
206 <groupId>org.webjars</groupId>
207 <artifactId>bootstrap</artifactId>
208 <version>3.3.5</version>
209 </dependency>
210 <dependency>
211 <groupId>org.webjars</groupId>
212 <artifactId>chartjs</artifactId>
213 <version>1.0.2</version>
214 </dependency>
215
216
217 <dependency>
218 <groupId>org.webjars.bower</groupId>
219 <artifactId>bootstrap-fileinput</artifactId>
220 <version>4.2.7</version>
221 </dependency>
222
223 <!-- for @SuppressFBWarning annotation -->
224 <dependency>
225 <groupId>com.google.code.findbugs</groupId>
226 <artifactId>annotations</artifactId>
227 <version>3.0.1u2</version>
228 <scope>provided</scope>
229 </dependency>
230
231 <!-- test dependencies -->
232 <dependency>
233 <groupId>junit</groupId>
234 <artifactId>junit</artifactId>
235 <version>4.12</version>
236 <scope>test</scope>
237 </dependency>
238
239 </dependencies>
240 <reporting>
241 <plugins>
242 <!-- Normally, we take off the dependency report, saves time. -->
243 <plugin>
244 <groupId>org.apache.maven.plugins</groupId>
245 <artifactId>maven-project-info-reports-plugin</artifactId>
246 <version>2.7</version>
247 <configuration>
248 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
249 </configuration>
250 </plugin>
251 <plugin>
252 <groupId>org.codehaus.mojo</groupId>
253 <artifactId>findbugs-maven-plugin</artifactId>
254 <version>3.0.3</version>
255 </plugin>
256 <plugin>
257 <groupId>org.apache.maven.plugins</groupId>
258 <artifactId>maven-pmd-plugin</artifactId>
259 <version>3.6</version>
260 </plugin>
261 </plugins>
262 </reporting>
263 <repositories>
264 <repository>
265 <id>hoerup-releases</id>
266 <name>hoerup-releases</name>
267 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
268 </repository>
269 </repositories>
270 </project>

  ViewVC Help
Powered by ViewVC 1.1.20