Added maven POM.

This commit is contained in:
Erik C. Thauvin 2016-07-07 01:11:06 -07:00
parent 9bc54976f2
commit 5c2c64683e
3 changed files with 42 additions and 0 deletions

1
.gitignore vendored
View file

@ -21,6 +21,7 @@
/out
/proguard-project.txt
/project.properties
/target
/test-output
Thumbs.db
ehthumbs.db

View file

@ -266,6 +266,9 @@
<method />
</configuration>
</component>
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
<component name="libraryTable">
<library name="Gradle: com.beust:jcommander:1.48">
<CLASSES>

38
pom.xml Normal file
View file

@ -0,0 +1,38 @@
<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>
<groupId>net.thauvin.erik</groupId>
<artifactId>DataProviderTest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>DataProviderTest</name>
<url>https://github.com/ethauvin/DataProviderTest</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories>
<repository>
<id>jcenter</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-testng-utils</artifactId>
<version>2.12.4</version>
</dependency>
</dependencies>
</project>