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

Annotation of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2741 - (hide annotations) (download) (as text)
Tue Oct 6 21:26:55 2015 UTC (8 years, 7 months ago) by torben
File MIME type: text/xml
File size: 5652 byte(s)
streamline osrm variants - and enhance test parameter
1 torben 2725 <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 torben 2727 <mainClass>dk.daoas.fulddaekning.LookupMain</mainClass>
51 torben 2725 <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 torben 2727
95 torben 2725 </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 torben 2727 <dependency>
118     <groupId>mysql</groupId>
119     <artifactId>mysql-connector-java</artifactId>
120     <version>5.1.36</version>
121     </dependency>
122 torben 2725
123 torben 2728 <dependency>
124     <groupId>org.apache.httpcomponents</groupId>
125     <artifactId>httpasyncclient</artifactId>
126     <version>4.1</version>
127     </dependency>
128 torben 2725
129    
130 torben 2741 <dependency>
131     <groupId>dk.thoerup</groupId>
132     <artifactId>osrmbinding</artifactId>
133     <version>1.0</version>
134     </dependency>
135 torben 2728
136    
137 torben 2741
138 torben 2725 <!--
139     <dependency>
140     <groupId>org.projectlombok</groupId>
141     <artifactId>lombok</artifactId>
142     <version>1.16.0</version>
143     <scope>provided</scope>
144     </dependency>
145     -->
146     </dependencies>
147    
148     <!--
149     <reporting>
150     <plugins>
151     <plugin>
152     <groupId>org.apache.maven.plugins</groupId>
153     <artifactId>maven-project-info-reports-plugin</artifactId>
154     <version>2.8</version>
155     <reportSets>
156     <reportSet>
157     <reports>
158     <report>index</report>
159     </reports>
160     </reportSet>
161     </reportSets>
162     </plugin>
163    
164     <plugin>
165     <groupId>org.codehaus.mojo</groupId>
166     <artifactId>findbugs-maven-plugin</artifactId>
167     <version>3.0.1</version>
168     </plugin>
169     <plugin>
170     <groupId>org.apache.maven.plugins</groupId>
171     <artifactId>maven-checkstyle-plugin</artifactId>
172     <version>2.13</version>
173     <configuration>
174     <configLocation>checkstyle.xml</configLocation>
175     </configuration>
176     </plugin>
177     </plugins>
178     </reporting>
179    
180    
181     <repositories>
182     <repository>
183     <id>thoerup-releases</id>
184     <name>thoerup-releases</name>
185     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
186     </repository>
187     <repository>
188     <id>thoerup-snapshot</id>
189     <name>thoerup-snapshot</name>
190     <url>http://app.t-hoerup.dk/artifactory/ext-snapshot-local</url>
191     </repository>
192    
193     <repository>
194     <id>sonatype-nexus-snapshots</id>
195     <name>Sonatype Nexus Snapshots</name>
196     <url>https://oss.sonatype.org/content/repositories/snapshots</url>
197     <releases>
198     <enabled>false</enabled>
199     </releases>
200     <snapshots>
201     <enabled>true</enabled>
202     </snapshots>
203     </repository>
204     </repositories>
205     -->
206    
207     </project>

  ViewVC Help
Powered by ViewVC 1.1.20