File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ repositories {
23
23
jcenter()
24
24
}
25
25
26
+ targetCompatibility = JavaVersion . VERSION_1_7
27
+ sourceCompatibility = JavaVersion . VERSION_1_7
28
+
29
+ configurations { jmockit }
30
+
26
31
// In this section you declare the dependencies for your production and test code
27
32
dependencies {
28
33
// The production code uses the SLF4J logging API at compile time
@@ -36,8 +41,9 @@ dependencies {
36
41
// TestNG is also supported by the Gradle Test task. Just change the
37
42
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
38
43
// '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
+
41
47
}
42
48
43
49
task wraper (type : Wrapper ) {
@@ -51,7 +57,7 @@ uploadArchives {
51
57
mavenDeployer {
52
58
repository url : " file:${ projectDir} "
53
59
54
- pom. version = ' 2.0.1 '
60
+ pom. version = ' 2.1.0 '
55
61
pom. groupId = ' com.pileproject'
56
62
pom. artifactId = ' drivecommand'
57
63
You can’t perform that action at this time.
0 commit comments