blob: a80383573fb8a66b5989701bb3f3fe77cba4fe24 [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>
15 <version>${testng.version}</version>
16 <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>
34 <groupId>ant</groupId>
35 <artifactId>ant</artifactId>
36 <version>1.6.5</version>
37 <optional>true</optional>
38 </dependency>
39 <dependency>
40 <groupId>junit</groupId>
41 <artifactId>junit</artifactId>
42 <version>3.8.1</version>
43 </dependency>
44 <dependency>
45 <groupId>qdox</groupId>
46 <artifactId>qdox</artifactId>
47 <version>1.6.1</version>
48 <scope>provided</scope>
49 </dependency>
50 <dependency>
51 <groupId>org.beanshell</groupId>
52 <artifactId>bsh</artifactId>
53 <version>2.0b4</version>
54 <scope>provided</scope>
55 </dependency>
56 </dependencies>
57
58</project>