We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6acda68 commit c83152aCopy full SHA for c83152a
build.gradle
@@ -78,6 +78,7 @@ asciidoctor {
78
}
79
80
def apidocs = tasks.register("apidocs", Groovydoc) {
81
+ group = "documentation"
82
source project.files('src/main/groovy')
83
84
destinationDir = new File(buildDir, 'docs/api')
@@ -89,7 +90,7 @@ def apidocs = tasks.register("apidocs", Groovydoc) {
89
90
91
92
def docs = tasks.register("docs", Copy) {
- type = "documentation"
93
94
dependsOn = ["apidocs", "asciidoctor"]
95
from "$buildDir/asciidoc/html5"
96
into "$buildDir/docs"
0 commit comments