|
1 | 1 | buildscript {
|
2 | 2 | dependencies {
|
3 |
| - classpath 'org.fusesource.jansi:jansi:1.16' |
| 3 | + classpath 'org.fusesource.jansi:jansi:1.18' |
4 | 4 | }
|
5 | 5 | }
|
6 | 6 |
|
7 | 7 | plugins {
|
8 |
| - id 'com.gradle.build-scan' version '1.16' |
| 8 | + id 'com.gradle.build-scan' version '2.4.2' |
9 | 9 | id 'groovy'
|
10 | 10 | id 'java-gradle-plugin'
|
11 | 11 | id 'maven-publish'
|
12 | 12 | id 'idea'
|
13 | 13 | id 'jacoco'
|
14 |
| - id 'com.gradle.plugin-publish' version '0.10.0' |
15 |
| - id 'com.github.kt3k.coveralls' version '2.8.2' |
| 14 | + id 'com.gradle.plugin-publish' version '0.10.1' |
| 15 | + id 'com.github.kt3k.coveralls' version '2.8.4' |
16 | 16 | }
|
17 | 17 |
|
18 | 18 | buildScan {
|
@@ -43,24 +43,24 @@ sourceSets {
|
43 | 43 | }
|
44 | 44 |
|
45 | 45 | dependencies {
|
46 |
| - compile gradleApi() |
47 |
| - compile localGroovy() |
48 |
| - compile 'org.fusesource.jansi:jansi:1.16' |
| 46 | + implementation gradleApi() |
| 47 | + implementation localGroovy() |
| 48 | + implementation 'org.fusesource.jansi:jansi:1.18' |
49 | 49 |
|
50 |
| - testCompile gradleTestKit() |
51 |
| - testCompile('org.spockframework:spock-core:1.1-groovy-2.4') { |
| 50 | + testImplementation gradleTestKit() |
| 51 | + testImplementation('org.spockframework:spock-core:1.3-groovy-2.5') { |
52 | 52 | exclude module: 'groovy-all'
|
53 | 53 | }
|
54 |
| - testCompile 'net.bytebuddy:byte-buddy:1.7.5' |
55 |
| - testCompile 'org.objenesis:objenesis:2.6' |
56 |
| - testCompile 'commons-io:commons-io:2.5' |
| 54 | + testImplementation 'net.bytebuddy:byte-buddy:1.10.1' |
| 55 | + testImplementation 'org.objenesis:objenesis:3.1' |
| 56 | + testImplementation 'commons-io:commons-io:2.6' |
57 | 57 |
|
58 |
| - functionalTestCompile localGroovy() |
59 |
| - functionalTestCompile gradleTestKit() |
60 |
| - functionalTestCompile('org.spockframework:spock-core:1.1-groovy-2.4') { |
| 58 | + functionalTestImplementation localGroovy() |
| 59 | + functionalTestImplementation gradleTestKit() |
| 60 | + functionalTestImplementation('org.spockframework:spock-core:1.3-groovy-2.5') { |
61 | 61 | exclude module: 'groovy-all'
|
62 | 62 | }
|
63 |
| - functionalTestCompile 'commons-io:commons-io:2.5' |
| 63 | + functionalTestImplementation 'commons-io:commons-io:2.6' |
64 | 64 | }
|
65 | 65 |
|
66 | 66 | gradlePlugin {
|
@@ -98,11 +98,6 @@ task functionalTest(type: Test) {
|
98 | 98 | minHeapSize '128m'
|
99 | 99 | maxHeapSize '512m'
|
100 | 100 |
|
101 |
| - jacoco { |
102 |
| - append = true |
103 |
| - destinationFile = file("${buildDir}/jacoco/test.exec") |
104 |
| - } |
105 |
| - |
106 | 101 | testlogger {
|
107 | 102 | theme 'mocha-parallel'
|
108 | 103 | }
|
|
0 commit comments