Skip to content

Commit c2528c9

Browse files
authored
Merge pull request #83 from reactive-commons/feature/fix-asciidoctor
update asciidoctor
2 parents 8fd09f5 + 23e1d0c commit c2528c9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
plugins {
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

main.gradle

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)