gradle and maven

This commit is contained in:
Tyrel Souza 2017-02-28 20:45:14 -05:00
parent 358bd1f82b
commit a832375223
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
2 changed files with 13 additions and 0 deletions

View File

@ -28,4 +28,6 @@ dependencies {
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:3.8.2'
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.13'
compile group: 'junit', name: 'junit', version: '4.12'
}

11
pom.xml Normal file
View File

@ -0,0 +1,11 @@
<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>com.tyrelsouza.hourtracker</groupId>
<artifactId>hourtracker</artifactId>
<version>1</version>
</project>