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

Contents of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2457 - (show annotations) (download) (as text)
Fri Mar 20 13:57:47 2015 UTC (9 years, 2 months ago) by torben
File MIME type: text/xml
File size: 2679 byte(s)
switch to maven
1 <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>DaoAdresseService</artifactId>
10 <version>1.0</version>
11
12 <packaging>war</packaging>
13
14 <properties>
15 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 </properties>
17
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.maven.plugins</groupId>
22 <artifactId>maven-compiler-plugin</artifactId>
23 <version>3.1</version>
24 <configuration>
25 <source>1.7</source>
26 <target>1.7</target>
27 <showWarnings>true</showWarnings>
28 <showDeprecation>true</showDeprecation>
29 </configuration>
30 <!--Do NOT show depreciation in test compile-->
31 <executions>
32 <execution>
33 <id>default-testCompile</id>
34 <phase>test-compile</phase>
35 <configuration>
36 <showDeprecation>false</showDeprecation>
37 </configuration>
38 <goals>
39 <goal>testCompile</goal>
40 </goals>
41 </execution>
42 </executions>
43 </plugin>
44
45
46
47 </plugins>
48 </build>
49
50
51 <dependencies>
52 <dependency>
53 <groupId>javax.servlet</groupId>
54 <artifactId>javax.servlet-api</artifactId>
55 <version>3.0.1</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.apache.commons</groupId>
61 <artifactId>commons-lang3</artifactId>
62 <version>3.3.2</version>
63 </dependency>
64
65
66 <dependency>
67 <groupId>dk.thoerup</groupId>
68 <artifactId>CircuitBreaker</artifactId>
69 <version>1.0</version>
70 </dependency>
71
72
73 <dependency>
74 <groupId>dk.thoerup</groupId>
75 <artifactId>WebConfig</artifactId>
76 <version>1.0</version>
77 </dependency>
78
79 <dependency>
80 <groupId>com.google.code.gson</groupId>
81 <artifactId>gson</artifactId>
82 <version>2.3.1</version>
83 </dependency>
84
85
86 <dependency>
87 <groupId>com.google.code.geocoder-java</groupId>
88 <artifactId>geocoder-java</artifactId>
89 <version>0.16</version>
90 </dependency>
91
92
93 <dependency>
94 <groupId>junit</groupId>
95 <artifactId>junit</artifactId>
96 <version>4.12</version>
97 <scope>test</scope>
98 </dependency>
99
100 </dependencies>
101
102
103 <repositories>
104 <repository>
105 <id>hoerup-releases</id>
106 <name>hoerup-releases</name>
107 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
108 </repository>
109 </repositories>
110
111 </project>

  ViewVC Help
Powered by ViewVC 1.1.20