File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ dependencies {
20
20
compile ' org.apache.maven.shared:maven-dependency-analyzer:1.10'
21
21
}
22
22
23
- sourceCompatibility = JavaVersion . VERSION_1_10
24
- targetCompatibility = JavaVersion . VERSION_1_10
23
+ sourceCompatibility = JavaVersion . VERSION_11
24
+ targetCompatibility = JavaVersion . VERSION_11
25
25
26
26
task sourcesJar (type : Jar , dependsOn : classes) {
27
27
classifier = ' sources'
@@ -84,8 +84,8 @@ publishing {
84
84
85
85
task javaVersionCheck () {
86
86
doLast {
87
- if (JavaVersion . current() != JavaVersion . VERSION_1_10 ) {
88
- throw new GradleException (' Build must be run on Java 10 ' )
87
+ if (JavaVersion . current() != JavaVersion . VERSION_11 ) {
88
+ throw new GradleException (' Build must be run on Java 11 ' )
89
89
}
90
90
}
91
91
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.9 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.2 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments