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

Annotation of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2799 - (hide annotations) (download) (as text)
Mon Jan 4 13:30:43 2016 UTC (8 years, 5 months ago) by torben
File MIME type: text/xml
File size: 5324 byte(s)
clean up mvn dependencies
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    
112 torben 2799
113 torben 2727 <dependency>
114     <groupId>mysql</groupId>
115     <artifactId>mysql-connector-java</artifactId>
116     <version>5.1.36</version>
117     </dependency>
118 torben 2725
119 torben 2799
120 torben 2728 <dependency>
121     <groupId>org.apache.httpcomponents</groupId>
122 torben 2799 <artifactId>httpclient</artifactId>
123     <version>4.5.1</version>
124 torben 2728 </dependency>
125 torben 2725
126 torben 2799
127 torben 2750 <dependency>
128     <groupId>net.minidev</groupId>
129     <artifactId>json-smart</artifactId>
130     <version>2.2</version>
131     </dependency>
132    
133 torben 2728
134    
135 torben 2725 </dependencies>
136    
137     <!--
138     <reporting>
139     <plugins>
140     <plugin>
141     <groupId>org.apache.maven.plugins</groupId>
142     <artifactId>maven-project-info-reports-plugin</artifactId>
143     <version>2.8</version>
144     <reportSets>
145     <reportSet>
146     <reports>
147     <report>index</report>
148     </reports>
149     </reportSet>
150     </reportSets>
151     </plugin>
152    
153     <plugin>
154     <groupId>org.codehaus.mojo</groupId>
155     <artifactId>findbugs-maven-plugin</artifactId>
156     <version>3.0.1</version>
157     </plugin>
158     <plugin>
159     <groupId>org.apache.maven.plugins</groupId>
160     <artifactId>maven-checkstyle-plugin</artifactId>
161     <version>2.13</version>
162     <configuration>
163     <configLocation>checkstyle.xml</configLocation>
164     </configuration>
165     </plugin>
166     </plugins>
167     </reporting>
168    
169    
170     <repositories>
171     <repository>
172     <id>thoerup-releases</id>
173     <name>thoerup-releases</name>
174     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
175     </repository>
176     <repository>
177     <id>thoerup-snapshot</id>
178     <name>thoerup-snapshot</name>
179     <url>http://app.t-hoerup.dk/artifactory/ext-snapshot-local</url>
180     </repository>
181    
182     <repository>
183     <id>sonatype-nexus-snapshots</id>
184     <name>Sonatype Nexus Snapshots</name>
185     <url>https://oss.sonatype.org/content/repositories/snapshots</url>
186     <releases>
187     <enabled>false</enabled>
188     </releases>
189     <snapshots>
190     <enabled>true</enabled>
191     </snapshots>
192     </repository>
193     </repositories>
194     -->
195    
196     </project>

  ViewVC Help
Powered by ViewVC 1.1.20