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

Contents of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2864 - (show annotations) (download) (as text)
Thu Jan 28 11:25:01 2016 UTC (8 years, 3 months ago) by torben
File MIME type: text/xml
File size: 6006 byte(s)
More findbugs
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 </properties>
17 <build>
18
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
30 <!-- be strict regarding warnings -->
31 <compilerArguments>
32 <Werror />
33 <!-- <Xlint:all />-->
34 </compilerArguments>
35
36 </configuration>
37 <!--Do NOT show depreciation in test compile -->
38 <executions>
39 <execution>
40 <id>default-testCompile</id>
41 <phase>test-compile</phase>
42 <configuration>
43 <showDeprecation>false</showDeprecation>
44 </configuration>
45 <goals>
46 <goal>testCompile</goal>
47 </goals>
48 </execution>
49 </executions>
50 </plugin>
51 <!-- <plugin>
52 <groupId>org.codehaus.mojo</groupId>
53 <artifactId>buildnumber-maven-plugin</artifactId>
54 <version>1.3</version>
55 <executions>
56 <execution>
57 <phase>validate</phase>
58 <goals>
59 <goal>create</goal>
60 </goals>
61 </execution>
62 </executions>
63 <configuration>
64 <doCheck>false</doCheck>
65 <doUpdate>true</doUpdate>
66 </configuration>
67 </plugin>
68 -->
69
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-war-plugin</artifactId>
73 <version>2.6</version>
74 <configuration>
75 <archive>
76 <manifestEntries>
77 <SCM-Revision>${prefix.revision}</SCM-Revision>
78 <Build-Time>${maven.build.timestamp}</Build-Time>
79 </manifestEntries>
80 </archive>
81 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>findbugs-maven-plugin</artifactId>
86 <version>3.0.0</version>
87 </plugin>
88 </plugins>
89 </build>
90
91 <dependencies>
92 <dependency>
93 <groupId>javax.servlet</groupId>
94 <artifactId>javax.servlet-api</artifactId>
95 <version>3.0.1</version>
96 <scope>provided</scope>
97 </dependency>
98
99 <dependency>
100 <groupId>org.apache.commons</groupId>
101 <artifactId>commons-lang3</artifactId>
102 <version>3.3.2</version>
103 </dependency>
104 <dependency>
105 <groupId>commons-fileupload</groupId>
106 <artifactId>commons-fileupload</artifactId>
107 <version>1.3.1</version>
108 </dependency>
109
110 <dependency>
111 <groupId>dk.thoerup</groupId>
112 <artifactId>CircuitBreaker</artifactId>
113 <version>1.1.1</version>
114 </dependency>
115 <dependency>
116 <groupId>dk.thoerup</groupId>
117 <artifactId>WebConfig</artifactId>
118 <version>1.0</version>
119 </dependency>
120 <dependency>
121 <groupId>com.google.code.gson</groupId>
122 <artifactId>gson</artifactId>
123 <version>2.3.1</version>
124 </dependency>
125 <dependency>
126 <groupId>com.google.guava</groupId>
127 <artifactId>guava</artifactId>
128 <version>18.0</version>
129 </dependency>
130
131 <dependency>
132 <groupId>com.sun.mail</groupId>
133 <artifactId>javax.mail</artifactId>
134 <version>1.4.5</version>
135 </dependency>
136
137
138 <!-- webjars -->
139 <dependency>
140 <groupId>org.webjars</groupId>
141 <artifactId>jquery</artifactId>
142 <version>2.1.4</version>
143 </dependency>
144 <dependency>
145 <groupId>org.webjars</groupId>
146 <artifactId>bootstrap</artifactId>
147 <version>3.3.5</version>
148 </dependency>
149 <dependency>
150 <groupId>org.webjars</groupId>
151 <artifactId>chartjs</artifactId>
152 <version>1.0.2</version>
153 </dependency>
154
155 <dependency>
156 <groupId>org.webjars.bower</groupId>
157 <artifactId>bootstrap-fileinput</artifactId>
158 <version>4.2.7</version>
159 </dependency>
160
161 <dependency>
162 <groupId>com.google.code.findbugs</groupId>
163 <artifactId>annotations</artifactId>
164 <version>3.0.1u2</version>
165 <scope>provided</scope>
166 </dependency>
167
168 <!-- test dependencies -->
169 <dependency>
170 <groupId>junit</groupId>
171 <artifactId>junit</artifactId>
172 <version>4.12</version>
173 <scope>test</scope>
174 </dependency>
175
176 </dependencies>
177 <reporting>
178 <plugins>
179 <!-- Normally, we take off the dependency report, saves time. -->
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-project-info-reports-plugin</artifactId>
183 <version>2.7</version>
184 <configuration>
185 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
186 </configuration>
187 </plugin>
188 <plugin>
189 <groupId>org.codehaus.mojo</groupId>
190 <artifactId>findbugs-maven-plugin</artifactId>
191 <version>3.0.1</version>
192 </plugin>
193 </plugins>
194 </reporting>
195 <repositories>
196 <repository>
197 <id>hoerup-releases</id>
198 <name>hoerup-releases</name>
199 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
200 </repository>
201 </repositories>
202 </project>

  ViewVC Help
Powered by ViewVC 1.1.20