forked from alexruiz/fest-reflect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (59 loc) · 2.31 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
<?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>
<artifactId>fest-reflect</artifactId>
<version>2.0-SNAPSHOT</version>
<name>FEST-Reflect</name>
<description>Fluent Interface that simplifies usage of Java Reflection</description>
<inceptionYear>2007</inceptionYear>
<url>http://fest.easytesting.org/reflect</url>
<parent>
<groupId>org.easytesting</groupId>
<artifactId>fest</artifactId>
<version>1.0.16</version>
</parent>
<mailingLists>
<mailingList>
<name>Easy Testing Group</name>
<post>http://groups.google.com/group/easytesting</post>
<subscribe>http://groups.google.com/group/easytesting</subscribe>
<unsubscribe>http://groups.google.com/group/easytesting</unsubscribe>
</mailingList>
</mailingLists>
<scm>
<developerConnection>scm:git:[email protected]:alexruiz/fest-reflect.git</developerConnection>
<connection>scm:git:git://github.com/alexruiz/fest-reflect.git</connection>
<url>https://github.com/alexruiz/fest-reflect</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/alexruiz/fest-reflect/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-util</artifactId>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.easytesting</groupId>
<artifactId>fest-test</artifactId>
<version>2.1.2-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</dependency>
</dependencies>
</project>