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

Annotation of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2725 - (hide annotations) (download) (as text)
Tue Sep 29 07:48:48 2015 UTC (8 years, 8 months ago) by torben
File MIME type: text/xml
File size: 5260 byte(s)
switch to maven
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     <mainClass>dk.daoas.fulddaekningworker.WorkerMain</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     <!--
71     <plugin>
72     <groupId>org.apache.maven.plugins</groupId>
73     <artifactId>maven-dependency-plugin</artifactId>
74     <executions>
75     <execution>
76     <id>copy-dependencies</id>
77     <phase>package</phase>
78     <goals>
79     <goal>copy-dependencies</goal>
80     </goals>
81     <configuration>
82     <outputDirectory>${project.build.directory}</outputDirectory>
83     <overWriteReleases>false</overWriteReleases>
84     <overWriteSnapshots>false</overWriteSnapshots>
85     <overWriteIfNewer>true</overWriteIfNewer>
86     </configuration>
87     </execution>
88     </executions>
89     <configuration>
90     <outputDirectory>
91     ${project.build.directory}
92     </outputDirectory>
93     </configuration>
94     </plugin>
95     -->
96     </plugins>
97     </build>
98    
99    
100     <dependencies>
101     <dependency>
102     <groupId>com.google.code.gson</groupId>
103     <artifactId>gson</artifactId>
104     <version>2.3.1</version>
105     </dependency>
106    
107     <dependency>
108     <groupId>com.google.guava</groupId>
109     <artifactId>guava</artifactId>
110     <version>18.0</version>
111     </dependency>
112     <dependency>
113     <groupId>javax.mail</groupId>
114     <artifactId>mail</artifactId>
115     <version>1.4</version>
116     </dependency>
117    
118    
119    
120    
121     <!--
122     <dependency>
123     <groupId>org.projectlombok</groupId>
124     <artifactId>lombok</artifactId>
125     <version>1.16.0</version>
126     <scope>provided</scope>
127     </dependency>
128     -->
129     </dependencies>
130    
131     <!--
132     <reporting>
133     <plugins>
134     <plugin>
135     <groupId>org.apache.maven.plugins</groupId>
136     <artifactId>maven-project-info-reports-plugin</artifactId>
137     <version>2.8</version>
138     <reportSets>
139     <reportSet>
140     <reports>
141     <report>index</report>
142     </reports>
143     </reportSet>
144     </reportSets>
145     </plugin>
146    
147     <plugin>
148     <groupId>org.codehaus.mojo</groupId>
149     <artifactId>findbugs-maven-plugin</artifactId>
150     <version>3.0.1</version>
151     </plugin>
152     <plugin>
153     <groupId>org.apache.maven.plugins</groupId>
154     <artifactId>maven-checkstyle-plugin</artifactId>
155     <version>2.13</version>
156     <configuration>
157     <configLocation>checkstyle.xml</configLocation>
158     </configuration>
159     </plugin>
160     </plugins>
161     </reporting>
162    
163    
164     <repositories>
165     <repository>
166     <id>thoerup-releases</id>
167     <name>thoerup-releases</name>
168     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
169     </repository>
170     <repository>
171     <id>thoerup-snapshot</id>
172     <name>thoerup-snapshot</name>
173     <url>http://app.t-hoerup.dk/artifactory/ext-snapshot-local</url>
174     </repository>
175    
176     <repository>
177     <id>sonatype-nexus-snapshots</id>
178     <name>Sonatype Nexus Snapshots</name>
179     <url>https://oss.sonatype.org/content/repositories/snapshots</url>
180     <releases>
181     <enabled>false</enabled>
182     </releases>
183     <snapshots>
184     <enabled>true</enabled>
185     </snapshots>
186     </repository>
187     </repositories>
188     -->
189    
190     </project>

  ViewVC Help
Powered by ViewVC 1.1.20