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

Annotation of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2531 - (hide annotations) (download) (as text)
Fri May 8 20:25:12 2015 UTC (9 years ago) by torben
File MIME type: text/xml
File size: 3008 byte(s)
findbugs
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     <version>1.0</version>
82     </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    
105     <dependency>
106     <groupId>junit</groupId>
107     <artifactId>junit</artifactId>
108     <version>4.12</version>
109     <scope>test</scope>
110     </dependency>
111    
112     </dependencies>
113    
114 torben 2531 <reporting>
115     <plugins>
116 torben 2481
117 torben 2531 <plugin>
118     <groupId>org.codehaus.mojo</groupId>
119     <artifactId>findbugs-maven-plugin</artifactId>
120     <version>3.0.1</version>
121     </plugin>
122     </plugins>
123     </reporting>
124    
125    
126 torben 2481 <repositories>
127     <repository>
128     <id>hoerup-releases</id>
129     <name>hoerup-releases</name>
130     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
131     </repository>
132     </repositories>
133    
134 torben 2457 </project>

  ViewVC Help
Powered by ViewVC 1.1.20