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

Annotation of /dao/FuldDaekningWorker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.20