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

Annotation of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2727 - (hide annotations) (download) (as text)
Tue Sep 29 07:56:49 2015 UTC (8 years, 8 months ago) by torben
File MIME type: text/xml
File size: 5390 byte(s)
mvn build works now
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    
124    
125     <!--
126     <dependency>
127     <groupId>org.projectlombok</groupId>
128     <artifactId>lombok</artifactId>
129     <version>1.16.0</version>
130     <scope>provided</scope>
131     </dependency>
132     -->
133     </dependencies>
134    
135     <!--
136     <reporting>
137     <plugins>
138     <plugin>
139     <groupId>org.apache.maven.plugins</groupId>
140     <artifactId>maven-project-info-reports-plugin</artifactId>
141     <version>2.8</version>
142     <reportSets>
143     <reportSet>
144     <reports>
145     <report>index</report>
146     </reports>
147     </reportSet>
148     </reportSets>
149     </plugin>
150    
151     <plugin>
152     <groupId>org.codehaus.mojo</groupId>
153     <artifactId>findbugs-maven-plugin</artifactId>
154     <version>3.0.1</version>
155     </plugin>
156     <plugin>
157     <groupId>org.apache.maven.plugins</groupId>
158     <artifactId>maven-checkstyle-plugin</artifactId>
159     <version>2.13</version>
160     <configuration>
161     <configLocation>checkstyle.xml</configLocation>
162     </configuration>
163     </plugin>
164     </plugins>
165     </reporting>
166    
167    
168     <repositories>
169     <repository>
170     <id>thoerup-releases</id>
171     <name>thoerup-releases</name>
172     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
173     </repository>
174     <repository>
175     <id>thoerup-snapshot</id>
176     <name>thoerup-snapshot</name>
177     <url>http://app.t-hoerup.dk/artifactory/ext-snapshot-local</url>
178     </repository>
179    
180     <repository>
181     <id>sonatype-nexus-snapshots</id>
182     <name>Sonatype Nexus Snapshots</name>
183     <url>https://oss.sonatype.org/content/repositories/snapshots</url>
184     <releases>
185     <enabled>false</enabled>
186     </releases>
187     <snapshots>
188     <enabled>true</enabled>
189     </snapshots>
190     </repository>
191     </repositories>
192     -->
193    
194     </project>

  ViewVC Help
Powered by ViewVC 1.1.20