• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<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>5.12.1</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>org.apache.ant</groupId>
35            <artifactId>ant</artifactId>
36            <version>1.7.0</version>
37            <optional>true</optional>
38        </dependency>
39        <dependency>
40            <groupId>junit</groupId>
41            <artifactId>junit</artifactId>
42            <version>4.10</version>
43        </dependency>
44        <dependency>
45            <groupId>org.beanshell</groupId>
46            <artifactId>bsh</artifactId>
47            <version>2.0b4</version>
48            <scope>provided</scope>
49        </dependency>
50        <dependency>
51          <groupId>com.google.inject</groupId>
52           <artifactId>guice</artifactId>
53           <version>2.0</version>
54           <scope>provided</scope>
55        </dependency>
56
57    </dependencies>
58
59</project>
60