-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
75 lines (64 loc) · 2.33 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
<?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>com.hp.autonomy</groupId>
<artifactId>foss-spring-boot-master-pom</artifactId>
<version>3.5.0</version>
</parent>
<groupId>com.hp.autonomy.test</groupId>
<artifactId>testing-utils</artifactId>
<version>2.3.0</version>
<name>OpenText IDOL Java Testing Utils</name>
<description>Hamcrest matchers and Mockito Spring factory</description>
<url>https://github.com/opentext-idol/java-testing-utils</url>
<organization>
<name>OpenText</name>
<url>https://www.opentext.com/</url>
</organization>
<inceptionYear>2013</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Alex Scown</name>
</developer>
<developer>
<name>Matthew Gordon</name>
</developer>
<developer>
<name>Will Byrne</name>
</developer>
</developers>
<scm>
<connection>scm:git:[email protected]:opentext-idol/java-testing-utils.git</connection>
<developerConnection>scm:git:[email protected]:opentext-idol/java-testing-utils.git</developerConnection>
<url>[email protected]:opentext-idol/java-testing-utils.git</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/opentext-idol/java-testing-utils/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>com.hp.autonomy.aci.client</groupId>
<artifactId>aci-api</artifactId>
<version>25.2.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
</dependencies>
</project>