-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
59 lines (47 loc) · 1.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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>uk.ac.standrews.cs</groupId>
<artifactId>common-pom</artifactId>
<version>3.0-SNAPSHOT</version>
</parent>
<artifactId>guid-sta</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>guid-sta</name>
<description>Utility classes</description>
<url>https://github.com/stacs-srg/guid-sta</url>
<inceptionYear>2016</inceptionYear>
<dependencies>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
<!-- TEST dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<!-- Repository to which this module is deployed, and others retrieved from. -->
<!-- This has to be replicated from the parent POM so the parent POM can be found. -->
<repository>
<id>uk.ac.standrews.cs.maven.repository</id>
<name>School of Computer Science Maven Repository</name>
<url>http://maven.cs.st-andrews.ac.uk/</url>
</repository>
</repositories>
</project>