/[projects]/android/TrainInfoService/pom.xml
ViewVC logotype

Contents of /android/TrainInfoService/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2476 - (show annotations) (download) (as text)
Mon Mar 23 09:26:12 2015 UTC (9 years, 1 month ago) by torben
File MIME type: text/xml
File size: 3023 byte(s)
use commons lang3
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.thoerup</groupId>
9 <artifactId>TrainInfoService</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
60 <dependency>
61 <groupId>org.jsoup</groupId>
62 <artifactId>jsoup</artifactId>
63 <version>1.8.1</version>
64 </dependency>
65
66 <dependency><!-- from hoerup artifactory -->
67 <groupId>dk.thoerup</groupId>
68 <artifactId>GenericJavaUtils</artifactId>
69 <version>1.0</version>
70 </dependency>
71 <dependency><!-- from hoerup artifactory -->
72 <groupId>dk.thoerup</groupId>
73 <artifactId>TrainInfoCommon</artifactId>
74 <version>1.0</version>
75 </dependency>
76
77
78 <dependency><!-- from hoerup artifactory -->
79 <groupId>dk.thoerup</groupId>
80 <artifactId>CircuitBreaker</artifactId>
81 <version>1.0</version>
82 </dependency>
83
84
85 <dependency><!-- from hoerup artifactory -->
86 <groupId>dk.thoerup</groupId>
87 <artifactId>WebConfig</artifactId>
88 <version>1.0</version>
89 </dependency>
90 <!--
91 <dependency>
92 <groupId>commons-lang</groupId>
93 <artifactId>commons-lang</artifactId>
94 <version>2.6</version>
95 </dependency>
96 -->
97
98 <dependency>
99 <groupId>org.apache.commons</groupId>
100 <artifactId>commons-lang3</artifactId>
101 <version>3.0</version>
102 </dependency>
103
104
105 <dependency>
106 <groupId>org.simpleframework</groupId>
107 <artifactId>simple-xml</artifactId>
108 <version>2.7.1</version>
109 </dependency>
110
111 </dependencies>
112
113
114 <repositories>
115 <repository>
116 <id>hoerup-releases</id>
117 <name>hoerup-releases</name>
118 <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
119 </repository>
120 </repositories>
121
122 </project>

  ViewVC Help
Powered by ViewVC 1.1.20