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

Annotation of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2920 - (hide annotations) (download) (as text)
Thu Feb 4 15:04:05 2016 UTC (8 years, 3 months ago) by torben
File MIME type: text/xml
File size: 7663 byte(s)
Use newer Jersey version
1 torben 2798 <?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 torben 2890
17    
18 torben 2920 <version.jersey>2.22.1</version.jersey>
19 torben 2798 </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.0</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 torben 2838 <groupId>commons-fileupload</groupId>
109     <artifactId>commons-fileupload</artifactId>
110     <version>1.3.1</version>
111     </dependency>
112 torben 2871 <!--
113 torben 2798 <dependency>
114     <groupId>dk.thoerup</groupId>
115     <artifactId>CircuitBreaker</artifactId>
116     <version>1.1.1</version>
117     </dependency>
118 torben 2878 -->
119    
120 torben 2798 <dependency>
121     <groupId>dk.thoerup</groupId>
122     <artifactId>WebConfig</artifactId>
123     <version>1.0</version>
124     </dependency>
125 torben 2878
126 torben 2872
127 torben 2798 <dependency>
128     <groupId>com.google.code.gson</groupId>
129     <artifactId>gson</artifactId>
130     <version>2.3.1</version>
131     </dependency>
132 torben 2872
133 torben 2798 <dependency>
134     <groupId>com.google.guava</groupId>
135     <artifactId>guava</artifactId>
136     <version>18.0</version>
137     </dependency>
138    
139     <dependency>
140     <groupId>com.sun.mail</groupId>
141     <artifactId>javax.mail</artifactId>
142     <version>1.4.5</version>
143     </dependency>
144    
145 torben 2878 <!-- contains ags.utils.dataStructures.trees.thirdGenKD -->
146     <dependency>
147     <groupId>com.nitayjoffe.thirdparty.net.robowiki.knn</groupId>
148     <artifactId>knn-benchmark</artifactId>
149     <version>0.1</version>
150     </dependency>
151 torben 2798
152 torben 2890 <dependency>
153     <groupId>javax.ws.rs</groupId>
154     <artifactId>javax.ws.rs-api</artifactId>
155     <version>2.0.1</version>
156     </dependency>
157     <!-- If deploying on tomcat or other container without a bundled ws-rs implementation -->
158     <dependency>
159     <groupId>org.glassfish.jersey.containers</groupId>
160     <artifactId>jersey-container-servlet</artifactId>
161     <version>${version.jersey}</version>
162     </dependency>
163    
164     <dependency>
165     <groupId>org.glassfish.jersey.media</groupId>
166     <artifactId>jersey-media-moxy</artifactId>
167     <version>${version.jersey}</version>
168     </dependency>
169    
170     <dependency>
171     <groupId>org.glassfish.jersey.media</groupId>
172     <artifactId>jersey-media-json-processing</artifactId>
173     <version>${version.jersey}</version>
174     </dependency>
175     <dependency>
176     <groupId>org.glassfish.jersey.media</groupId>
177     <artifactId>jersey-media-multipart</artifactId>
178     <version>${version.jersey}</version>
179     </dependency>
180     <dependency>
181     <groupId>org.glassfish.jersey.media</groupId>
182     <artifactId>jersey-media-sse</artifactId>
183     <version>${version.jersey}</version>
184     </dependency>
185 torben 2878
186    
187 torben 2798 <!-- webjars -->
188     <dependency>
189     <groupId>org.webjars</groupId>
190     <artifactId>jquery</artifactId>
191     <version>2.1.4</version>
192     </dependency>
193     <dependency>
194     <groupId>org.webjars</groupId>
195     <artifactId>bootstrap</artifactId>
196     <version>3.3.5</version>
197     </dependency>
198     <dependency>
199     <groupId>org.webjars</groupId>
200     <artifactId>chartjs</artifactId>
201     <version>1.0.2</version>
202     </dependency>
203    
204 torben 2878
205 torben 2838 <dependency>
206     <groupId>org.webjars.bower</groupId>
207     <artifactId>bootstrap-fileinput</artifactId>
208     <version>4.2.7</version>
209     </dependency>
210 torben 2864
211 torben 2878 <!-- for @SuppressFBWarning annotation -->
212 torben 2864 <dependency>
213     <groupId>com.google.code.findbugs</groupId>
214     <artifactId>annotations</artifactId>
215     <version>3.0.1u2</version>
216     <scope>provided</scope>
217     </dependency>
218 torben 2838
219 torben 2798 <!-- test dependencies -->
220     <dependency>
221     <groupId>junit</groupId>
222     <artifactId>junit</artifactId>
223     <version>4.12</version>
224     <scope>test</scope>
225     </dependency>
226    
227     </dependencies>
228     <reporting>
229     <plugins>
230     <!-- Normally, we take off the dependency report, saves time. -->
231     <plugin>
232     <groupId>org.apache.maven.plugins</groupId>
233     <artifactId>maven-project-info-reports-plugin</artifactId>
234     <version>2.7</version>
235     <configuration>
236     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
237     </configuration>
238     </plugin>
239     <plugin>
240     <groupId>org.codehaus.mojo</groupId>
241     <artifactId>findbugs-maven-plugin</artifactId>
242     <version>3.0.1</version>
243     </plugin>
244     </plugins>
245     </reporting>
246     <repositories>
247     <repository>
248     <id>hoerup-releases</id>
249     <name>hoerup-releases</name>
250     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
251     </repository>
252     </repositories>
253     </project>

  ViewVC Help
Powered by ViewVC 1.1.20