我需要添加附录才能发布工件。对于构建任务,这很容易。但是当我尝试通过maven-publish插件发布工件时,它不起作用。附录未添加。
plugins {
id 'maven-publish'
id 'org.springframework.boot' version '1.5.19.RELEASE'
id 'org.asciidoctor.convert' version '1.5.3'
}
def env = 'something'
jar {
enabled = true
appendix env
}
sourceJar {
appendix env
}
apiDocZip {
appendix env
}
结果我得到了以下工件:
artifact-something-0.0.0.jar
artifact-something-0.0.0-sources.jar
artifact-something-0.0.0-apidoc.zip
但是当我使用任务publishToMavenLocal时,我会得到关注:
artifact-0.0.0.jar
artifact-0.0.0.pom
artifact-0.0.0-sources.jar
artifact-0.0.0-apidoc.zip
如何查看未添加附录。有什么解决方案可以添加附录来发布工件?