Skip to content

Commit cf685bb

Browse files
committed
Fixes 'assembleDocs' task errors
See gh-91
1 parent b8eb481 commit cf685bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,6 @@ task docs(dependsOn:[asciidoctor, groovydoc, copyDocs, copyResources] +
126126

127127
task assembleDocs(type: Zip, dependsOn:docs) {
128128
from "${project.buildDir}/docs"
129-
baseName = "${project.name}-${project.version}"
130-
destinationDir = project.file("${project.buildDir}/distributions")
129+
archiveBaseName.set(project.name)
130+
destinationDirectory.set(project.file("${project.buildDir}/distributions"))
131131
}

0 commit comments

Comments
 (0)