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

Contents of /android/TrainInfoCommon/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2471 - (show annotations) (download) (as text)
Sat Mar 21 11:54:34 2015 UTC (9 years, 1 month ago) by torben
File MIME type: text/xml
File size: 1577 byte(s)
simplexml is a compiletime-only dependency
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>TrainInfoCommon</artifactId>
10 <version>1.0</version>
11
12 <packaging>jar</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 </plugins>
45 </build>
46
47
48 <dependencies>
49 <dependency>
50 <groupId>org.simpleframework</groupId>
51 <artifactId>simple-xml</artifactId>
52 <version>2.7.1</version>
53 <scope>provided</scope>
54 </dependency>
55
56 </dependencies>
57
58
59 </project>

  ViewVC Help
Powered by ViewVC 1.1.20