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

Contents of /dao/DaoAdresseVedligehold/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3006 - (show annotations) (download) (as text)
Tue Apr 19 15:49:14 2016 UTC (8 years, 1 month ago) by torben
File MIME type: text/xml
File size: 8244 byte(s)
1) Load DAWA to local csv file
2) use commons CSV to parse downloaded file
3) read all kommunekoder(muncipality codes) in region from dawa and use this to handle each muncipality individualy (smaller batches)
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
17
18 <version.jersey>2.22.1</version.jersey>
19 </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.3</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 <groupId>commons-fileupload</groupId>
109 <artifactId>commons-fileupload</artifactId>
110 <version>1.3.1</version>
111 </dependency>
112 <!--
113 <dependency>
114 <groupId>dk.thoerup</groupId>
115 <artifactId>CircuitBreaker</artifactId>
116 <version>1.1.1</version>
117 </dependency>
118 -->
119
120 <dependency>
121 <groupId>dk.thoerup</groupId>
122 <artifactId>WebConfig</artifactId>
123 <version>1.0</version>
124 </dependency>
125
126
127 <dependency>
128 <groupId>com.google.code.gson</groupId>
129 <artifactId>gson</artifactId>
130 <version>2.3.1</version>
131 </dependency>
132
133 <dependency>
134 <groupId>org.json</groupId>
135 <artifactId>json</artifactId>
136 <version>20160212</version>
137 </dependency>
138
139
140 <dependency>
141 <groupId>com.google.guava</groupId>
142 <artifactId>guava</artifactId>
143 <version>18.0</version>
144 </dependency>
145
146 <dependency>
147 <groupId>com.sun.mail</groupId>
148 <artifactId>javax.mail</artifactId>
149 <version>1.4.5</version>
150 </dependency>
151
152 <dependency>
153 <groupId>org.apache.commons</groupId>
154 <artifactId>commons-csv</artifactId>
155 <version>1.2</version>
156 </dependency>
157
158
159 <!-- contains ags.utils.dataStructures.trees.thirdGenKD -->
160 <dependency>
161 <groupId>com.nitayjoffe.thirdparty.net.robowiki.knn</groupId>
162 <artifactId>knn-benchmark</artifactId>
163 <version>0.1</version>
164 </dependency>
165
166 <dependency>
167 <groupId>javax.ws.rs</groupId>
168 <artifactId>javax.ws.rs-api</artifactId>
169 <version>2.0.1</version>
170 </dependency>
171 <!-- If deploying on tomcat or other container without a bundled ws-rs implementation -->
172 <dependency>
173 <groupId>org.glassfish.jersey.containers</groupId>
174 <artifactId>jersey-container-servlet</artifactId>
175 <version>${version.jersey}</version>
176 </dependency>
177 <!--
178 <dependency>
179 <groupId>org.glassfish.jersey.media</groupId>
180 <artifactId>jersey-media-moxy</artifactId>
181 <version>${version.jersey}</version>
182 </dependency>
183
184 <dependency>
185 <groupId>org.glassfish.jersey.media</groupId>
186 <artifactId>jersey-media-json-processing</artifactId>
187 <version>${version.jersey}</version>
188 </dependency>
189 <dependency>
190 <groupId>org.glassfish.jersey.media</groupId>
191 <artifactId>jersey-media-multipart</artifactId>
192 <version>${version.jersey}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.glassfish.jersey.media</groupId>
196 <artifactId>jersey-media-sse</artifactId>
197 <version>${version.jersey}</version>
198 </dependency>
199
200 -->
201 <!-- webjars -->
202 <dependency>
203 <groupId>org.webjars</groupId>
204 <artifactId>jquery</artifactId>
205 <version>2.1.4</version>
206 </dependency>
207 <dependency>
208 <groupId>org.webjars</groupId>
209 <artifactId>jquery-ui</artifactId>
210 <version>1.11.4</version>
211 </dependency>
212 <dependency>
213 <groupId>org.webjars</groupId>
214 <artifactId>bootstrap</artifactId>
215 <version>3.3.5</version>
216 </dependency>
217 <dependency>
218 <groupId>org.webjars</groupId>
219 <artifactId>chartjs</artifactId>
220 <version>1.0.2</version>
221 </dependency>
222
223
224 <dependency>
225 <groupId>org.webjars.bower</groupId>
226 <artifactId>bootstrap-fileinput</artifactId>
227 <version>4.2.7</version>
228 </dependency>
229
230 <!-- for @SuppressFBWarning annotation -->
231 <dependency>
232 <groupId>com.google.code.findbugs</groupId>
233 <artifactId>annotations</artifactId>
234 <version>3.0.1u2</version>
235 <scope>provided</scope>
236 </dependency>
237
238 <!-- test dependencies -->
239 <dependency>
240 <groupId>junit</groupId>
241 <artifactId>junit</artifactId>
242 <version>4.12</version>
243 <scope>test</scope>
244 </dependency>
245
246 </dependencies>
247 <reporting>
248 <plugins>
249 <!-- Normally, we take off the dependency report, saves time. -->
250 <plugin>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-project-info-reports-plugin</artifactId>
253 <version>2.7</version>
254 <configuration>
255 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
256 </configuration>
257 </plugin>
258 <plugin>
259 <groupId>org.codehaus.mojo</groupId>
260 <artifactId>findbugs-maven-plugin</artifactId>
261 <version>3.0.3</version>
262 </plugin>
263 <plugin>
264 <groupId>org.apache.maven.plugins</groupId>
265 <artifactId>maven-pmd-plugin</artifactId>
266 <version>3.6</version>
267 </plugin>
268 </plugins>
269 </reporting>
270 <repositories>
271 <repository>
272 <id>hoerup-releases</id>
273 <name>hoerup-releases</name>
274 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
275 </repository>
276 </repositories>
277 </project>

  ViewVC Help
Powered by ViewVC 1.1.20