Skip to content

Commit be12d9c

Browse files
committed
Initial commit
0 parents  commit be12d9c

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

pom.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
~ Copyleft (c) 2014. This code is for learning purposes only. Do whatever you like with it but don't take it as perfect code.
4+
~ Michel Racic (http://rac.su/+) => github.com/rac2030
5+
-->
6+
7+
<project xmlns="http://maven.apache.org/POM/4.0.0"
8+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<groupId>SeleniumDownloadHelper</groupId>
13+
<artifactId>SeleniumDownloadHelper</artifactId>
14+
<version>0.1-SNAPSHOT</version>
15+
16+
<properties>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
<selenium.version>2.42.2</selenium.version>
19+
</properties>
20+
21+
<licenses>
22+
<license>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
24+
</license>
25+
</licenses>
26+
27+
<developers>
28+
<developer>
29+
<id>rac2030</id>
30+
<name>Michel Racic</name>
31+
<url>https://github.com/rac2030</url>
32+
</developer>
33+
</developers>
34+
35+
<dependencies>
36+
<dependency>
37+
<groupId>org.seleniumhq.selenium</groupId>
38+
<artifactId>selenium-java</artifactId>
39+
<version>${selenium.version}</version>
40+
</dependency>
41+
</dependencies>
42+
43+
</project>

0 commit comments

Comments
 (0)