-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
99 lines (93 loc) · 2.84 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.thoughtworks</groupId>
<artifactId>Automator-Parent</artifactId>
<version>1</version>
<packaging>pom</packaging>
<name>Automator Parent Project</name>
<modules>
<module>Automator-Common</module>
<module>Automator-DatabaseAccess</module>
<module>Automator-DatabaseAdmin</module>
<module>Automator-Generator</module>
<module>Automator-ExecutorCommon</module>
<module>Automator-ExecutorStandalone</module>
<module>Automator-ExecutorGUI</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>local-maven-repo</id>
<name>Local maven repository</name>
<url>file://${project.path}/local-maven-repo</url>
</repository>
<repository>
<id>sonatype-oss-public</id>
<name>Sonatype maven repository</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
<repository>
<id>jboss-public</id>
<name>JBoss public nexus repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
<repository>
<id>spring-milestone</id>
<name>Spring maven MILESTONE repository</name>
<url>http://repo.springsource.org/libs-milestone</url>
</repository>
<repository>
<id>spring-snapshot</id>
<name>Spring maven SNAPSHOT repository</name>
<url>http://repo.springsource.org/libs-snapshot</url>
</repository>
<repository>
<id>terracotta-releases</id>
<name>Terracotta maven repository</name>
<url>http://www.terracotta.org/download/reflector/releases</url>
</repository>
</repositories>
<properties>
<project.path>/Users/sriniup/Documents/workspace/Automator-Parent</project.path>
<spring.version>3.1.1.RELEASE</spring.version>
</properties>
<dependencies>
<!-- Simple XML -->
<dependency>
<groupId>org.simpleframework</groupId>
<artifactId>simple-xml</artifactId>
<version>2.6.4</version>
</dependency>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>