Skip to content

Commit b626808

Browse files
committed
Update versions of TestNG and JMockit
1 parent a32418c commit b626808

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

build.gradle

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ repositories {
2323
jcenter()
2424
}
2525

26+
targetCompatibility = JavaVersion.VERSION_1_7
27+
sourceCompatibility = JavaVersion.VERSION_1_7
28+
29+
configurations { jmockit }
30+
2631
// In this section you declare the dependencies for your production and test code
2732
dependencies {
2833
// The production code uses the SLF4J logging API at compile time
@@ -36,8 +41,9 @@ dependencies {
3641
// TestNG is also supported by the Gradle Test task. Just change the
3742
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
3843
// 'test.useTestNG()' to your build script.
39-
testCompile 'org.testng:testng:6.9.4'
40-
testCompile 'com.googlecode.jmockit:jmockit:1.4'
44+
testCompile 'org.testng:testng:6.9.10'
45+
testCompile 'com.googlecode.jmockit:jmockit:1.7'
46+
4147
}
4248

4349
task wraper(type: Wrapper) {
@@ -51,7 +57,7 @@ uploadArchives {
5157
mavenDeployer {
5258
repository url: "file:${projectDir}"
5359

54-
pom.version = '2.0.1'
60+
pom.version = '2.1.0'
5561
pom.groupId = 'com.pileproject'
5662
pom.artifactId = 'drivecommand'
5763

0 commit comments

Comments
 (0)