|
1 | 1 | plugins {
|
2 | 2 | id 'com.github.kt3k.coveralls' version '2.8.2'
|
3 | 3 | id 'jacoco'
|
4 |
| - id 'me.champeau.gradle.jmh' version '0.4.5' |
| 4 | + id 'me.champeau.gradle.jmh' version '0.5.3' |
5 | 5 | id 'nebula.optional-base' version '3.2.0'
|
6 | 6 | id 'com.github.hierynomus.license' version '0.15.0'
|
7 |
| - id 'com.github.spotbugs' version "4.5.0" |
| 7 | + id 'com.github.spotbugs' version "4.7.3" |
8 | 8 | }
|
9 | 9 |
|
10 | 10 | allprojects {
|
@@ -43,8 +43,8 @@ configure(publishedProjects) {
|
43 | 43 | apply plugin: 'nebula.optional-base'
|
44 | 44 | apply plugin: 'com.github.hierynomus.license'
|
45 | 45 |
|
46 |
| - sourceCompatibility = 1.8 |
47 |
| - targetCompatibility = 1.8 |
| 46 | + sourceCompatibility = 17.0 |
| 47 | + targetCompatibility = 17.0 |
48 | 48 |
|
49 | 49 | repositories {
|
50 | 50 | jcenter()
|
@@ -94,21 +94,21 @@ configure(publishedProjects) {
|
94 | 94 | }
|
95 | 95 |
|
96 | 96 | dependencies {
|
97 |
| - compile group: 'commons-codec', name: 'commons-codec', version: commonCodecVersion |
| 97 | + implementation group: 'commons-codec', name: 'commons-codec', version: commonCodecVersion |
98 | 98 |
|
99 |
| - testCompile group: 'junit', name: 'junit', version: junitVersion |
100 |
| - testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion |
101 |
| - testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: hamcrestVersion |
102 |
| - testCompile group: 'com.google.guava', name: 'guava', version: guavaVersion |
| 99 | + testImplementation group: 'junit', name: 'junit', version: junitVersion |
| 100 | + testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoVersion |
| 101 | + testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: hamcrestVersion |
| 102 | + testImplementation group: 'com.google.guava', name: 'guava', version: guavaVersion |
103 | 103 |
|
104 | 104 | // logging dependencies (logback)
|
105 |
| - testCompile group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion |
106 |
| - testCompile group: 'ch.qos.logback', name: 'logback-core', version: logbackVersion |
| 105 | + testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion |
| 106 | + testImplementation group: 'ch.qos.logback', name: 'logback-core', version: logbackVersion |
107 | 107 |
|
108 |
| - testCompile group: 'com.google.code.gson', name: 'gson', version: gsonVersion |
109 |
| - testCompile group: 'org.json', name: 'json', version: jsonVersion |
110 |
| - testCompile group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonSimpleVersion |
111 |
| - testCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion |
| 108 | + testImplementation group: 'com.google.code.gson', name: 'gson', version: gsonVersion |
| 109 | + testImplementation group: 'org.json', name: 'json', version: jsonVersion |
| 110 | + testImplementation group: 'com.googlecode.json-simple', name: 'json-simple', version: jsonSimpleVersion |
| 111 | + testImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jacksonVersion |
112 | 112 | }
|
113 | 113 |
|
114 | 114 | def docTitle = "Optimizely Java SDK"
|
|
0 commit comments