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

Contents of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2871 - (show annotations) (download) (as text)
Thu Jan 28 16:28:43 2016 UTC (8 years, 3 months ago) by torben
File MIME type: text/xml
File size: 6040 byte(s)
Reduce dependencies
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 -->
121 <!--
122 <dependency>
123 <groupId>com.google.code.gson</groupId>
124 <artifactId>gson</artifactId>
125 <version>2.3.1</version>
126 </dependency>
127 -->
128 <dependency>
129 <groupId>com.google.guava</groupId>
130 <artifactId>guava</artifactId>
131 <version>18.0</version>
132 </dependency>
133
134 <dependency>
135 <groupId>com.sun.mail</groupId>
136 <artifactId>javax.mail</artifactId>
137 <version>1.4.5</version>
138 </dependency>
139
140
141 <!-- webjars -->
142 <dependency>
143 <groupId>org.webjars</groupId>
144 <artifactId>jquery</artifactId>
145 <version>2.1.4</version>
146 </dependency>
147 <dependency>
148 <groupId>org.webjars</groupId>
149 <artifactId>bootstrap</artifactId>
150 <version>3.3.5</version>
151 </dependency>
152 <dependency>
153 <groupId>org.webjars</groupId>
154 <artifactId>chartjs</artifactId>
155 <version>1.0.2</version>
156 </dependency>
157
158 <dependency>
159 <groupId>org.webjars.bower</groupId>
160 <artifactId>bootstrap-fileinput</artifactId>
161 <version>4.2.7</version>
162 </dependency>
163
164 <dependency>
165 <groupId>com.google.code.findbugs</groupId>
166 <artifactId>annotations</artifactId>
167 <version>3.0.1u2</version>
168 <scope>provided</scope>
169 </dependency>
170
171 <!-- test dependencies -->
172 <dependency>
173 <groupId>junit</groupId>
174 <artifactId>junit</artifactId>
175 <version>4.12</version>
176 <scope>test</scope>
177 </dependency>
178
179 </dependencies>
180 <reporting>
181 <plugins>
182 <!-- Normally, we take off the dependency report, saves time. -->
183 <plugin>
184 <groupId>org.apache.maven.plugins</groupId>
185 <artifactId>maven-project-info-reports-plugin</artifactId>
186 <version>2.7</version>
187 <configuration>
188 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
189 </configuration>
190 </plugin>
191 <plugin>
192 <groupId>org.codehaus.mojo</groupId>
193 <artifactId>findbugs-maven-plugin</artifactId>
194 <version>3.0.1</version>
195 </plugin>
196 </plugins>
197 </reporting>
198 <repositories>
199 <repository>
200 <id>hoerup-releases</id>
201 <name>hoerup-releases</name>
202 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
203 </repository>
204 </repositories>
205 </project>

  ViewVC Help
Powered by ViewVC 1.1.20