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

Annotation of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2571 - (hide annotations) (download) (as text)
Tue Jun 9 09:14:28 2015 UTC (8 years, 11 months ago) by torben
File MIME type: text/xml
File size: 3167 byte(s)
Use new CircuitBreaker
1 torben 2481 <?xml version="1.0" encoding="UTF-8"?>
2     <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
4 torben 2457 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5    
6 torben 2481 <modelVersion>4.0.0</modelVersion>
7     <groupId>dk.daoas</groupId>
8     <artifactId>DaoAdresseService</artifactId>
9     <version>1.0</version>
10 torben 2457
11 torben 2481 <packaging>war</packaging>
12 torben 2457
13 torben 2481 <properties>
14     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15     </properties>
16 torben 2457
17 torben 2481 <build>
18     <plugins>
19     <plugin>
20     <groupId>org.apache.maven.plugins</groupId>
21     <artifactId>maven-compiler-plugin</artifactId>
22     <version>3.1</version>
23     <configuration>
24     <source>1.7</source>
25     <target>1.7</target>
26     <showWarnings>true</showWarnings>
27     <showDeprecation>true</showDeprecation>
28     </configuration>
29     <!--Do NOT show depreciation in test compile -->
30     <executions>
31     <execution>
32     <id>default-testCompile</id>
33     <phase>test-compile</phase>
34     <configuration>
35     <showDeprecation>false</showDeprecation>
36     </configuration>
37     <goals>
38     <goal>testCompile</goal>
39     </goals>
40     </execution>
41     </executions>
42     </plugin>
43 torben 2457
44    
45    
46 torben 2481 </plugins>
47     </build>
48 torben 2457
49    
50 torben 2481 <dependencies>
51     <dependency>
52     <groupId>javax.servlet</groupId>
53     <artifactId>javax.servlet-api</artifactId>
54     <version>3.0.1</version>
55     <scope>provided</scope>
56     </dependency>
57     <dependency>
58 torben 2483 <groupId>javax.servlet.jsp</groupId>
59     <artifactId>jsp-api</artifactId>
60     <version>2.0</version>
61     <scope>provided</scope>
62     </dependency>
63    
64     <dependency>
65 torben 2481 <groupId>jstl</groupId>
66     <artifactId>jstl</artifactId>
67     <version>1.2</version>
68     </dependency>
69 torben 2457
70    
71 torben 2481 <dependency>
72     <groupId>org.apache.commons</groupId>
73     <artifactId>commons-lang3</artifactId>
74     <version>3.3.2</version>
75     </dependency>
76 torben 2457
77    
78 torben 2481 <dependency>
79     <groupId>dk.thoerup</groupId>
80     <artifactId>CircuitBreaker</artifactId>
81 torben 2571 <version>1.1</version>
82 torben 2481 </dependency>
83 torben 2457
84    
85 torben 2481 <dependency>
86     <groupId>dk.thoerup</groupId>
87     <artifactId>WebConfig</artifactId>
88     <version>1.0</version>
89     </dependency>
90 torben 2457
91 torben 2481 <dependency>
92     <groupId>com.google.code.gson</groupId>
93     <artifactId>gson</artifactId>
94     <version>2.3.1</version>
95     </dependency>
96 torben 2457
97    
98 torben 2481 <dependency>
99     <groupId>com.google.code.geocoder-java</groupId>
100     <artifactId>geocoder-java</artifactId>
101     <version>0.16</version>
102     </dependency>
103    
104 torben 2566 <dependency>
105     <groupId>com.google.guava</groupId>
106     <artifactId>guava</artifactId>
107     <version>18.0</version>
108     </dependency>
109 torben 2481
110     <dependency>
111     <groupId>junit</groupId>
112     <artifactId>junit</artifactId>
113     <version>4.12</version>
114     <scope>test</scope>
115     </dependency>
116    
117     </dependencies>
118    
119 torben 2531 <reporting>
120     <plugins>
121 torben 2481
122 torben 2531 <plugin>
123     <groupId>org.codehaus.mojo</groupId>
124     <artifactId>findbugs-maven-plugin</artifactId>
125     <version>3.0.1</version>
126     </plugin>
127     </plugins>
128     </reporting>
129    
130    
131 torben 2481 <repositories>
132     <repository>
133     <id>hoerup-releases</id>
134     <name>hoerup-releases</name>
135     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
136     </repository>
137     </repositories>
138    
139 torben 2457 </project>

  ViewVC Help
Powered by ViewVC 1.1.20