-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpom.xml
More file actions
48 lines (40 loc) · 1.3 KB
/
pom.xml
File metadata and controls
48 lines (40 loc) · 1.3 KB
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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.wiselenium</groupId>
<artifactId>wiselenium-parent</artifactId>
<version>0.4.0-SNAPSHOT</version>
</parent>
<artifactId>wiselenium-elements</artifactId>
<packaging>jar</packaging>
<name>wiselenium elements</name>
<description>
wiselenium module with many html components.
</description>
<url>https://github.com/wiselenium/wiselenium</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Andre Ricardo Schaffer</name>
<email>andre.schaffer@gmail.com</email>
<url>http://www.linkedin.com/in/andrericardoschaffer</url>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.wiselenium</groupId>
<artifactId>wiselenium-factory</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>