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

Contents of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2798 - (show annotations) (download) (as text)
Sun Jan 3 19:41:43 2016 UTC (8 years, 4 months ago) by torben
File MIME type: text/xml
File size: 6393 byte(s)
add basic structure for DaoAdresseVedligehold
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 <dependency>
99 <groupId>javax.servlet.jsp</groupId>
100 <artifactId>jsp-api</artifactId>
101 <version>2.0</version>
102 <scope>provided</scope>
103 </dependency>
104
105 <dependency>
106 <groupId>org.apache.commons</groupId>
107 <artifactId>commons-lang3</artifactId>
108 <version>3.3.2</version>
109 </dependency>
110 <dependency>
111 <groupId>commons-codec</groupId>
112 <artifactId>commons-codec</artifactId>
113 <version>1.10</version>
114 </dependency>
115 <dependency>
116 <groupId>dk.thoerup</groupId>
117 <artifactId>CircuitBreaker</artifactId>
118 <version>1.1.1</version>
119 </dependency>
120 <dependency>
121 <groupId>dk.thoerup</groupId>
122 <artifactId>WebConfig</artifactId>
123 <version>1.0</version>
124 </dependency>
125 <dependency>
126 <groupId>com.google.code.gson</groupId>
127 <artifactId>gson</artifactId>
128 <version>2.3.1</version>
129 </dependency>
130 <dependency>
131 <groupId>com.google.code.geocoder-java</groupId>
132 <artifactId>geocoder-java</artifactId>
133 <version>0.16</version>
134 </dependency>
135 <dependency>
136 <groupId>com.google.guava</groupId>
137 <artifactId>guava</artifactId>
138 <version>18.0</version>
139 </dependency>
140
141 <dependency>
142 <groupId>com.sun.mail</groupId>
143 <artifactId>javax.mail</artifactId>
144 <version>1.4.5</version>
145 </dependency>
146
147
148 <!-- webjars -->
149 <dependency>
150 <groupId>org.webjars</groupId>
151 <artifactId>jquery</artifactId>
152 <version>2.1.4</version>
153 </dependency>
154 <dependency>
155 <groupId>org.webjars</groupId>
156 <artifactId>bootstrap</artifactId>
157 <version>3.3.5</version>
158 </dependency>
159 <dependency>
160 <groupId>org.webjars</groupId>
161 <artifactId>chartjs</artifactId>
162 <version>1.0.2</version>
163 </dependency>
164
165 <!-- test dependencies -->
166 <dependency>
167 <groupId>junit</groupId>
168 <artifactId>junit</artifactId>
169 <version>4.12</version>
170 <scope>test</scope>
171 </dependency>
172
173 </dependencies>
174 <reporting>
175 <plugins>
176 <!-- Normally, we take off the dependency report, saves time. -->
177 <plugin>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-project-info-reports-plugin</artifactId>
180 <version>2.7</version>
181 <configuration>
182 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
183 </configuration>
184 </plugin>
185 <plugin>
186 <groupId>org.codehaus.mojo</groupId>
187 <artifactId>findbugs-maven-plugin</artifactId>
188 <version>3.0.1</version>
189 </plugin>
190 <!-- integrate maven-cobertura-plugin to project site -->
191 <plugin>
192 <groupId>org.codehaus.mojo</groupId>
193 <artifactId>cobertura-maven-plugin</artifactId>
194 <version>2.7</version>
195 <configuration>
196 <formats>
197 <format>html</format>
198 <format>xml</format>
199 </formats>
200 </configuration>
201 </plugin>
202 </plugins>
203 </reporting>
204 <repositories>
205 <repository>
206 <id>hoerup-releases</id>
207 <name>hoerup-releases</name>
208 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
209 </repository>
210 </repositories>
211 </project>

  ViewVC Help
Powered by ViewVC 1.1.20