forked from federecio/dropwizard-junit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
57 lines (51 loc) · 1.91 KB
/
Copy pathpom.xml
File metadata and controls
57 lines (51 loc) · 1.91 KB
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
<?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>
<groupId>com.federecio</groupId>
<artifactId>dropwizard-junit</artifactId>
<version>0.4-SNAPSHOT</version>
<properties>
<dropwizard.version>0.7.0</dropwizard.version>
</properties>
<developers>
<developer>
<name>Federico Recio</name>
<url>http://about.me/federecio</url>
</developer>
<developer>
<name>Jochen Szostek</name>
<url>http://prefabsoft.com</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com:federecio/dropwizard-junit.git</connection>
<developerConnection>scm:git:git@github.com:federecio/dropwizard-junit.git</developerConnection>
<url>http://github.com/federecio/dropwizard-junit</url>
</scm>
<dependencies>
<!-- DropWizard -->
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.jayway.restassured</groupId>
<artifactId>rest-assured</artifactId>
<version>1.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>sonatype-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>