Skip to content
This repository was archived by the owner on Jul 6, 2023. It is now read-only.

Commit a985617

Browse files
committed
Upgrade gradle and java versions
1 parent c5d9b18 commit a985617

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
8-
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.1.9'
7+
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2'
8+
classpath 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.0'
99
}
1010
}
1111

1212
allprojects {
1313
apply plugin: 'java'
1414

15-
sourceCompatibility = 1.8
16-
targetCompatibility = 1.8
15+
sourceCompatibility = 11
16+
targetCompatibility = 11
1717

1818
tasks.withType(JavaCompile) {
1919
options.incremental = true

gradle/integration-test.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818

1919
// Define integration test task
2020
task integrationTest(type: Test) {
21-
testClassesDir = sourceSets.integrationTest.output.classesDir
21+
testClassesDirs = sourceSets.integrationTest.output.classesDirs
2222
classpath = sourceSets.integrationTest.runtimeClasspath
2323
}
2424

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip

0 commit comments

Comments
 (0)