Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 65124c8

Browse files
committed
fix #119 Ensure docsZip defines a -docs classifier
1 parent cff6284 commit 65124c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

gradle/doc.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ configure(rootProject) {
6666
}
6767

6868
task docsZip(type: Zip, dependsOn: asciidoctor) {
69-
baseName = 'reactor-rabbitmq-docs'
69+
archiveBaseName.set('reactor-rabbitmq')
70+
archiveClassifier.set('docs')
7071
afterEvaluate() {
7172
//we copy the pdf late, when a potential customVersion has been applied to rootProject
7273
from("$buildDir/asciidoc/pdf/index.pdf") {

0 commit comments

Comments
 (0)