-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
85 lines (85 loc) · 3.16 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
77
78
79
80
81
82
83
84
85
<?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>org.yestech</groupId>
<artifactId>yestest</artifactId>
<version>1.2.0-SNAPSHOT</version>
<name>YES Test</name>
<url>http://yestech.org/sites/yestest/</url>
<description>Wrapper classes for different testing frameworks</description>
<parent>
<groupId>org.yestech</groupId>
<artifactId>yessuperpom</artifactId>
<version>1.3.0</version>
</parent>
<scm>
<connection>scm:git:[email protected]:yestech/yestest.git</connection>
<developerConnection>scm:git:[email protected]:yestech/yestest.git</developerConnection>
<url>http://github.com/yestech/yestest/tree/master</url>
</scm>
<organization>
<name>YES Technology Association</name>
<url>http://yestech.org</url>
</organization>
<licenses>
<license>
<name>LGPLv3</name>
<url>http://opensource.org/licenses/lgpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>artie</id>
<name>Artie Copeland</name>
<email>http://mailhide.recaptcha.net/d?k=013dif-8KmF_OR5-Zs49rn9w==&c=ZDwNN9ZwWomHpMAaLEW0Rt3HB4aATO6AM20eeZNxLS4=</email>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>aj</id>
<name>AJ Wright</name>
<email>[email protected]</email>
<roles>
<role>developer</role>
</roles>
</developer>
</developers>
<ciManagement>
<url>http://ci.yestech.org</url>
<system>hudson</system>
</ciManagement>
<dependencies>
<dependency>
<groupId>org.openqa.selenium.core</groupId>
<artifactId>selenium-core</artifactId>
<version>1.0-20080914.225453</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium.client-drivers</groupId>
<artifactId>selenium-java-client-driver</artifactId>
<version>1.0-beta-2</version>
<exclusions>
<exclusion>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server</artifactId>
</exclusion>
<exclusion>
<groupId>org.seleniumhq.selenium.server</groupId>
<artifactId>selenium-server-coreless</artifactId>
</exclusion>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>