Add required props to published docs (#46)

The `zip.deployed=false, zip.type=docs` needs to be set in order for the docs to get auto-deployed to static.spring.io
This commit is contained in:
Chris Bono
2022-07-29 19:40:46 -05:00
committed by GitHub
parent de579b7336
commit 1d25f16707

View File

@@ -612,4 +612,13 @@ publishing {
}
}
artifactoryPublish {
publications(publishing.publications.mavenJava)
properties {
mavenJava '*:*:*:*@zip', 'zip.name': 'spring-pulsar', 'zip.displayname': 'Spring Pulsar', 'zip.deployed': false
mavenJava '*:*:*:docs@zip', 'zip.type': 'docs'
mavenJava '*:*:*:dist@zip', 'zip.type': 'dist'
}
}
apply from: "${rootDir}/gradle/docs.gradle"