blob: c969d80e89a08b46a485d85c85443e24191d317d [file] [log] [blame]
DanFabulichc60f2212009-07-01 12:01:32 +00001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <!--
5 This POM cannot be used to build TestNG; it should only be used as part of a Maven
6 repository upload bundle.
7
8 See the guide to creating a bundle here:
9 http://maven.apache.org/guides/mini/guide-central-repository-upload.html
10 -->
11 <modelVersion>4.0.0</modelVersion>
12 <groupId>org.testng</groupId>
13 <artifactId>testng</artifactId>
14 <name>TestNG</name>
cbeust9193a022010-04-27 20:17:57 +000015 <version>5.12.1</version>
DanFabulichc60f2212009-07-01 12:01:32 +000016 <description>TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.</description>
17 <url>http://testng.org</url>
18
19 <licenses>
20 <license>
21 <name>Apache License, Version 2.0</name>
22 <url>http://apache.org/licenses/LICENSE-2.0</url>
23 </license>
24 </licenses>
25
26 <scm>
27 <connection>scm:svn:http://testng.googlecode.com/svn/trunk/</connection>
28 <developerConnection>scm:svn:http://testng.googlecode.com/svn/trunk/</developerConnection>
29 <url>http://testng.googlecode.com/svn/trunk</url>
30 </scm>
31
32 <dependencies>
33 <dependency>
Lukas Jungmannc4c8ad32012-03-14 16:15:33 +010034 <groupId>org.apache.ant</groupId>
DanFabulichc60f2212009-07-01 12:01:32 +000035 <artifactId>ant</artifactId>
Lukas Jungmann24fcac62012-03-20 16:26:21 +010036 <version>1.7.0</version>
DanFabulichc60f2212009-07-01 12:01:32 +000037 <optional>true</optional>
38 </dependency>
39 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
Lukas Jungmann89f3b062011-12-02 22:01:50 +010042 <version>4.10</version>
DanFabulichc60f2212009-07-01 12:01:32 +000043 </dependency>
44 <dependency>
DanFabulichc60f2212009-07-01 12:01:32 +000045 <groupId>org.beanshell</groupId>
46 <artifactId>bsh</artifactId>
47 <version>2.0b4</version>
48 <scope>provided</scope>
49 </dependency>
cbeust923e3d12010-04-22 18:14:27 +000050 <dependency>
cbeust9193a022010-04-27 20:17:57 +000051 <groupId>com.google.inject</groupId>
cbeust923e3d12010-04-22 18:14:27 +000052 <artifactId>guice</artifactId>
53 <version>2.0</version>
54 <scope>provided</scope>
55 </dependency>
56
DanFabulichc60f2212009-07-01 12:01:32 +000057 </dependencies>
58
59</project>