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

Annotation of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2936 - (hide annotations) (download) (as text)
Fri Feb 12 22:05:35 2016 UTC (8 years, 3 months ago) by torben
File MIME type: text/xml
File size: 7972 byte(s)
add pmd reporting
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 torben 2921 <!--
164 torben 2890 <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 torben 2921 -->
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 torben 2932 <groupId>org.webjars</groupId>
195     <artifactId>jquery-ui</artifactId>
196     <version>1.11.4</version>
197     </dependency>
198     <dependency>
199 torben 2798 <groupId>org.webjars</groupId>
200     <artifactId>bootstrap</artifactId>
201     <version>3.3.5</version>
202     </dependency>
203     <dependency>
204     <groupId>org.webjars</groupId>
205     <artifactId>chartjs</artifactId>
206     <version>1.0.2</version>
207     </dependency>
208    
209 torben 2878
210 torben 2838 <dependency>
211     <groupId>org.webjars.bower</groupId>
212     <artifactId>bootstrap-fileinput</artifactId>
213     <version>4.2.7</version>
214     </dependency>
215 torben 2864
216 torben 2878 <!-- for @SuppressFBWarning annotation -->
217 torben 2864 <dependency>
218     <groupId>com.google.code.findbugs</groupId>
219     <artifactId>annotations</artifactId>
220     <version>3.0.1u2</version>
221     <scope>provided</scope>
222     </dependency>
223 torben 2838
224 torben 2798 <!-- test dependencies -->
225     <dependency>
226     <groupId>junit</groupId>
227     <artifactId>junit</artifactId>
228     <version>4.12</version>
229     <scope>test</scope>
230     </dependency>
231    
232     </dependencies>
233     <reporting>
234     <plugins>
235     <!-- Normally, we take off the dependency report, saves time. -->
236     <plugin>
237     <groupId>org.apache.maven.plugins</groupId>
238     <artifactId>maven-project-info-reports-plugin</artifactId>
239     <version>2.7</version>
240     <configuration>
241     <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
242     </configuration>
243     </plugin>
244     <plugin>
245     <groupId>org.codehaus.mojo</groupId>
246     <artifactId>findbugs-maven-plugin</artifactId>
247     <version>3.0.1</version>
248     </plugin>
249 torben 2936 <plugin>
250     <groupId>org.apache.maven.plugins</groupId>
251     <artifactId>maven-pmd-plugin</artifactId>
252     <version>3.6</version>
253     </plugin>
254 torben 2798 </plugins>
255     </reporting>
256     <repositories>
257     <repository>
258     <id>hoerup-releases</id>
259     <name>hoerup-releases</name>
260     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
261     </repository>
262     </repositories>
263     </project>

  ViewVC Help
Powered by ViewVC 1.1.20