forked from hertzsprung/hamcrest-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
70 lines (65 loc) · 2.07 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
<?xml version="1.0"?>
<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">
<parent>
<groupId>uk.co.datumedge</groupId>
<artifactId>datumedge-base</artifactId>
<version>0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>hamcrest-json</artifactId>
<version>0.3-SNAPSHOT</version>
<packaging>jar</packaging>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>org.skyscreamer</groupId>
<artifactId>jsonassert</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock-junit4</artifactId>
<version>2.6.0-RC2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<name>Hamcrest JSON</name>
<description>Hamcrest JSON matchers</description>
<url>https://github.com/hertzsprung/hamcrest-json</url>
<inceptionYear>2012</inceptionYear>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/hertzsprung/hamcrest-json/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/hertzsprung/hamcrest-json.git</connection>
<developerConnection>scm:git:git@github.com:hertzsprung/hamcrest-json.git</developerConnection>
<url>http://github.com/hertzsprung/hamcrest-json</url>
</scm>
<distributionManagement>
<site>
<id>datumedge-site</id>
<name>DatumEdge website</name>
<url>scp://pepperfish.net/home/jshaw/websites/datumedge.co.uk/www/html/hamcrest-json</url>
</site>
</distributionManagement>
</project>