-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
111 lines (100 loc) · 2.86 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
100
101
102
103
104
105
106
107
108
109
110
111
<?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>
<parent>
<groupId>org.testdriven</groupId>
<artifactId>testdriven</artifactId>
<version>5</version>
</parent>
<groupId>org.testdriven.jtk</groupId>
<artifactId>jtk</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JTK</name>
<description>Java Test Killer is a source code quality assurance product that verifies if all test methods contain assertions.</description>
<url>http://testdriven.org/jtk</url>
<developers>
<developer>
<id>padcom</id>
<name>Matthias Hryniszak</name>
<email>[email protected]</email>
<url>http://padcom13.blogspot.com</url>
<organization>testdriven.org</organization>
<organizationUrl>http://testdriven.org</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
<developer>
<id>kcrimson</id>
<name>Jaroslaw Palka</name>
<email>[email protected]</email>
<url>http://primitive.jogger.pl/</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/testdriven/jtk</connection>
<url>https://github.com/testdriven/jtk</url>
</scm>
<ciManagement>
<system>jenkins</system>
<url>http://testdriven.org/jenkins/job/jtk</url>
</ciManagement>
<issueManagement>
<system>github</system>
<url>https://github.com/testdriven/jtk/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>testdriven-releases</id>
<url>http://testdriven.org/nexus/content/repositories/releases/</url>
</repository>
<site>
<id>testdriven.org</id>
<url>scp://testdriven.org/srv/www/testdriven.org/html/jtk/</url>
</site>
</distributionManagement>
<repositories>
<repository>
<id>testdriven-releases</id>
<url>http://testdriven.org/nexus/content/repositories/releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-assert</artifactId>
<version>1.2</version>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.8.3</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>jtk-core</module>
<module>jtk-hudson-plugin</module>
<module>jtk-maven-plugin</module>
<module>jtk-cli</module>
</modules>
</project>