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

Contents of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2750 - (show annotations) (download) (as text)
Thu Oct 8 18:31:53 2015 UTC (8 years, 7 months ago) by torben
File MIME type: text/xml
File size: 5782 byte(s)
Try another json parser
1 <project
2 xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
7 <modelVersion>4.0.0</modelVersion>
8 <groupId>dk.daoas</groupId>
9 <artifactId>fulddaekningworker</artifactId>
10 <version>1.0</version>
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 </properties>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 <version>3.1</version>
22 <configuration>
23 <source>1.7</source>
24 <target>1.7</target>
25 <showWarnings>true</showWarnings>
26 <showDeprecation>true</showDeprecation>
27 </configuration>
28 <!--Do NOT show depreciation in test compile-->
29 <executions>
30 <execution>
31 <id>default-testCompile</id>
32 <phase>test-compile</phase>
33 <configuration>
34 <showDeprecation>false</showDeprecation>
35 </configuration>
36 <goals>
37 <goal>testCompile</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-jar-plugin</artifactId>
45 <version>2.5</version>
46 <configuration>
47 <archive>
48 <index>true</index>
49 <manifest>
50 <mainClass>dk.daoas.fulddaekning.LookupMain</mainClass>
51 <addClasspath>true</addClasspath>
52 </manifest>
53 </archive>
54 </configuration>
55 </plugin>
56
57 <!--
58 <plugin>
59 <groupId>org.codehaus.mojo</groupId>
60 <artifactId>findbugs-maven-plugin</artifactId>
61 <version>3.0.0</version>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-checkstyle-plugin</artifactId>
66 <version>2.13</version>
67 </plugin>
68 -->
69
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-dependency-plugin</artifactId>
73 <executions>
74 <execution>
75 <id>copy-dependencies</id>
76 <phase>package</phase>
77 <goals>
78 <goal>copy-dependencies</goal>
79 </goals>
80 <configuration>
81 <outputDirectory>${project.build.directory}</outputDirectory>
82 <overWriteReleases>false</overWriteReleases>
83 <overWriteSnapshots>false</overWriteSnapshots>
84 <overWriteIfNewer>true</overWriteIfNewer>
85 </configuration>
86 </execution>
87 </executions>
88 <configuration>
89 <outputDirectory>
90 ${project.build.directory}
91 </outputDirectory>
92 </configuration>
93 </plugin>
94
95 </plugins>
96 </build>
97
98
99 <dependencies>
100 <dependency>
101 <groupId>com.google.code.gson</groupId>
102 <artifactId>gson</artifactId>
103 <version>2.3.1</version>
104 </dependency>
105
106 <dependency>
107 <groupId>com.google.guava</groupId>
108 <artifactId>guava</artifactId>
109 <version>18.0</version>
110 </dependency>
111 <dependency>
112 <groupId>javax.mail</groupId>
113 <artifactId>mail</artifactId>
114 <version>1.4</version>
115 </dependency>
116
117 <dependency>
118 <groupId>mysql</groupId>
119 <artifactId>mysql-connector-java</artifactId>
120 <version>5.1.36</version>
121 </dependency>
122
123 <dependency>
124 <groupId>org.apache.httpcomponents</groupId>
125 <artifactId>httpasyncclient</artifactId>
126 <version>4.1</version>
127 </dependency>
128
129 <dependency>
130 <groupId>net.minidev</groupId>
131 <artifactId>json-smart</artifactId>
132 <version>2.2</version>
133 </dependency>
134
135 <!--
136 <dependency>
137 <groupId>dk.thoerup</groupId>
138 <artifactId>osrmbinding</artifactId>
139 <version>1.0</version>
140 </dependency>
141 -->
142
143
144 <!--
145 <dependency>
146 <groupId>org.projectlombok</groupId>
147 <artifactId>lombok</artifactId>
148 <version>1.16.0</version>
149 <scope>provided</scope>
150 </dependency>
151 -->
152 </dependencies>
153
154 <!--
155 <reporting>
156 <plugins>
157 <plugin>
158 <groupId>org.apache.maven.plugins</groupId>
159 <artifactId>maven-project-info-reports-plugin</artifactId>
160 <version>2.8</version>
161 <reportSets>
162 <reportSet>
163 <reports>
164 <report>index</report>
165 </reports>
166 </reportSet>
167 </reportSets>
168 </plugin>
169
170 <plugin>
171 <groupId>org.codehaus.mojo</groupId>
172 <artifactId>findbugs-maven-plugin</artifactId>
173 <version>3.0.1</version>
174 </plugin>
175 <plugin>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-checkstyle-plugin</artifactId>
178 <version>2.13</version>
179 <configuration>
180 <configLocation>checkstyle.xml</configLocation>
181 </configuration>
182 </plugin>
183 </plugins>
184 </reporting>
185
186
187 <repositories>
188 <repository>
189 <id>thoerup-releases</id>
190 <name>thoerup-releases</name>
191 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
192 </repository>
193 <repository>
194 <id>thoerup-snapshot</id>
195 <name>thoerup-snapshot</name>
196 <url>http://app.t-hoerup.dk/artifactory/ext-snapshot-local</url>
197 </repository>
198
199 <repository>
200 <id>sonatype-nexus-snapshots</id>
201 <name>Sonatype Nexus Snapshots</name>
202 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
203 <releases>
204 <enabled>false</enabled>
205 </releases>
206 <snapshots>
207 <enabled>true</enabled>
208 </snapshots>
209 </repository>
210 </repositories>
211 -->
212
213 </project>

  ViewVC Help
Powered by ViewVC 1.1.20