File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -416,6 +416,8 @@ subprojects { Project subproject ->
416
416
}
417
417
418
418
task replaceAtLink(dependsOn : moveConfigProps) {
419
+ group ' documentation'
420
+
419
421
doLast {
420
422
File file = new File (" ${ rootProject.buildDir} /config-props/${ subproject.name} -config-properties.adoc" )
421
423
if ( file. exists()) {
@@ -441,6 +443,8 @@ subprojects { Project subproject ->
441
443
}
442
444
}
443
445
task createDocsGeneratedFolders {
446
+ group ' documentation'
447
+
444
448
doLast {
445
449
if (! new File (" ${ rootProject.buildDir} /generated" ). exists()) {
446
450
new File (" ${ rootProject.buildDir} /generated" ). mkdir()
@@ -484,8 +488,6 @@ subprojects { Project subproject ->
484
488
}
485
489
}
486
490
487
- jar. dependsOn(processConfigProps)
488
-
489
491
groovydoc {
490
492
classpath + = project. configurations. documentation
491
493
}
Original file line number Diff line number Diff line change @@ -115,10 +115,8 @@ task mergeConfigProps(dependsOn: createDocsGeneratedFolders) {
115
115
}
116
116
}
117
117
118
- mergeConfigProps. mustRunAfter cleanupPropertyReference
119
-
120
118
task publishConfigurationReference (type : Copy ) {
121
- dependsOn cleanupPropertyReference, mergeConfigProps
119
+ dependsOn mergeConfigProps, cleanupPropertyReference
122
120
ext {
123
121
destinationFileName = " configurationreference.html"
124
122
inputFileName = " ${ rootProject.buildDir} /generated/propertyReference.adoc"
Original file line number Diff line number Diff line change @@ -34,10 +34,9 @@ if [[ $EXIT_STATUS -eq 0 ]]; then
34
34
fi
35
35
36
36
./gradlew --stop
37
- ./gradlew --console=plain --no-daemon clean || EXIT_STATUS=$?
38
37
./gradlew --console=plain --no-daemon assemble || EXIT_STATUS=$?
38
+ ./gradlew --console=plain --no-daemon processConfigProps || EXIT_STATUS=$?
39
39
./gradlew --console=plain --no-daemon docs || EXIT_STATUS=$?
40
- ./gradlew --console=plain --no-daemon mergeConfigProp || EXIT_STATUS=$?
41
40
./gradlew --console=plain --no-daemon publishConfigurationReference || EXIT_STATUS=$?
42
41
43
42
git clone https://${GH_TOKEN} @github.com/micronaut-projects/micronaut-docs.git -b gh-pages gh-pages --single-branch > /dev/null
You can’t perform that action at this time.
0 commit comments