-
Notifications
You must be signed in to change notification settings - Fork 3
/
pom.xml
executable file
·76 lines (69 loc) · 2.28 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
<?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>
<groupId>com.thoughtworks.testdox</groupId>
<artifactId>TestDox</artifactId>
<packaging>jar</packaging>
<version>0.3-SNAPSHOT</version>
<description><p>TestDox creates simple documentation from the method names in JUnit test cases.</p>
<p>
For Example, a test class like:
<pre>public class FooTest extends TestCase { public void testIsASingleton() {} }</pre>
would generate:
<pre>Test - is a singleton</pre>
</p></description>
<inceptionYear>2003</inceptionYear>
<organization>
<name>Thoughtworks</name>
<url>http://www.thoughtworks.com/</url>
</organization>
<url>http://agiledox.sourceforge.net/index.html</url>
<developers>
<developer>
<id>skizz</id>
<name>Chris stevenson</name>
<email>chris@skizz.biz</email>
<organization>http://skizz.biz/blog/</organization>
</developer>
</developers>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.thoughtworks.qdox</groupId>
<artifactId>qdox</artifactId>
<version>1.6.3</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<reports>
<report>maven-changelog-plugin</report>
<report>maven-javadoc-plugin</report>
<report>maven-junit-report-plugin</report>
</reports>
</project>