File tree Expand file tree Collapse file tree 5 files changed +9
-17
lines changed
Expand file tree Collapse file tree 5 files changed +9
-17
lines changed Original file line number Diff line number Diff line change @@ -70,9 +70,6 @@ signing {
7070}
7171
7272javadoc {
73- if (JavaVersion . current(). isJava9Compatible()) {
74- options. addBooleanOption(' html5' , true )
75- }
7673 options. links = [
7774 " https://docs.spring.io/spring/docs/5.0.0.RELEASE/javadoc-api/"
7875 ]
Original file line number Diff line number Diff line change 77 */
88
99plugins {
10- // Apply the java-library plugin to add support for Java Library
1110 id ' java-library'
1211 id ' jacoco'
1312 id ' maven-publish'
1413 id ' signing'
14+ id " com.github.ben-manes.versions" version " 0.36.0"
1515}
1616
1717allprojects {
@@ -33,9 +33,10 @@ subprojects {
3333 testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.7.1'
3434 }
3535
36- compileJava {
37- sourceCompatibility ' 1.8'
38- targetCompatibility ' 1.8'
36+ java {
37+ toolchain {
38+ languageVersion. set(JavaLanguageVersion . of(8 ))
39+ }
3940 }
4041
4142 test {
@@ -58,6 +59,6 @@ subprojects {
5859}
5960
6061wrapper {
61- gradleVersion = ' 6.8.2 '
62+ gradleVersion = ' 6.8.3 '
6263}
6364
Original file line number Diff line number Diff line change 11plugins {
2- id ' org.asciidoctor.jvm.convert' version ' 3.2.0 '
2+ id ' org.asciidoctor.jvm.convert' version ' 3.3.2 '
33}
44
55asciidoctor {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies {
1010 testImplementation ' org.assertj:assertj-core:3.19.0'
1111 testImplementation ' commons-io:commons-io:2.8.0'
1212 testImplementation ' com.google.guava:guava:30.1-jre'
13- testImplementation ' org.mockito:mockito-junit-jupiter:3.7.7 '
13+ testImplementation ' org.mockito:mockito-junit-jupiter:3.8.0 '
1414 testImplementation ' org.springframework:spring-core:5.0.0.RELEASE'
1515}
1616
@@ -74,10 +74,4 @@ publishing {
7474signing {
7575 useGpgCmd()
7676 sign publishing. publications. mavenJava
77- }
78-
79- javadoc {
80- if (JavaVersion . current(). isJava9Compatible()) {
81- options. addBooleanOption(' html5' , true )
82- }
8377}
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-6.7.1 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.8.3 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments