Skip to content

Commit c83152a

Browse files
committed
Fixed Gradle tasks
1 parent 6acda68 commit c83152a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ asciidoctor {
7878
}
7979

8080
def apidocs = tasks.register("apidocs", Groovydoc) {
81+
group = "documentation"
8182
source project.files('src/main/groovy')
8283

8384
destinationDir = new File(buildDir, 'docs/api')
@@ -89,7 +90,7 @@ def apidocs = tasks.register("apidocs", Groovydoc) {
8990
}
9091

9192
def docs = tasks.register("docs", Copy) {
92-
type = "documentation"
93+
group = "documentation"
9394
dependsOn = ["apidocs", "asciidoctor"]
9495
from "$buildDir/asciidoc/html5"
9596
into "$buildDir/docs"

0 commit comments

Comments
 (0)