File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ buildscript {
1313plugins {
1414 id ' jacoco'
1515 id ' org.sonarqube' version ' 3.0'
16- id ' org.asciidoctor.jvm.convert' version ' 3.1.0 '
16+ id ' org.asciidoctor.jvm.convert' version ' 3.3.2 '
1717 id ' org.springframework.boot' version " ${ springBootVersion} " apply false
1818}
1919
Original file line number Diff line number Diff line change @@ -69,17 +69,19 @@ subprojects {
6969
7070 group groupId
7171
72- task sourcesJar(type : Jar , dependsOn : classes) {
72+ tasks. register(' sourcesJar' , Jar ) {
73+ dependsOn classes
7374 classifier ' sources'
7475 from sourceSets. main. allJava
7576 }
7677
77- task javadocJar(type : Jar , dependsOn : javadoc) {
78+ tasks. register(' javadocJar' , Jar ) {
79+ dependsOn javadoc
7880 classifier = ' javadoc'
7981 from javadoc. destinationDir
8082 }
8183
82- tasks. withType(GenerateModuleMetadata ) {
84+ tasks. withType(GenerateModuleMetadata ). configureEach {
8385 enabled = false
8486 }
8587
You can’t perform that action at this time.
0 commit comments