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

Contents of /dao/DaoAdresseService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2483 - (show annotations) (download) (as text)
Mon Mar 23 21:08:18 2015 UTC (9 years, 1 month ago) by torben
File MIME type: text/xml
File size: 2784 byte(s)
Fjern sidste JSP compile warning
1 <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6 <modelVersion>4.0.0</modelVersion>
7 <groupId>dk.daoas</groupId>
8 <artifactId>DaoAdresseService</artifactId>
9 <version>1.0</version>
10
11 <packaging>war</packaging>
12
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 </properties>
16
17 <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
44
45
46 </plugins>
47 </build>
48
49
50 <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 <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 <groupId>jstl</groupId>
66 <artifactId>jstl</artifactId>
67 <version>1.2</version>
68 </dependency>
69
70
71 <dependency>
72 <groupId>org.apache.commons</groupId>
73 <artifactId>commons-lang3</artifactId>
74 <version>3.3.2</version>
75 </dependency>
76
77
78 <dependency>
79 <groupId>dk.thoerup</groupId>
80 <artifactId>CircuitBreaker</artifactId>
81 <version>1.0</version>
82 </dependency>
83
84
85 <dependency>
86 <groupId>dk.thoerup</groupId>
87 <artifactId>WebConfig</artifactId>
88 <version>1.0</version>
89 </dependency>
90
91 <dependency>
92 <groupId>com.google.code.gson</groupId>
93 <artifactId>gson</artifactId>
94 <version>2.3.1</version>
95 </dependency>
96
97
98 <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
115 <repositories>
116 <repository>
117 <id>hoerup-releases</id>
118 <name>hoerup-releases</name>
119 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
120 </repository>
121 </repositories>
122
123 </project>

  ViewVC Help
Powered by ViewVC 1.1.20