作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在gradle documentation中,我们可以阅读:
For each configuration in your project, Gradle provides the tasks uploadConfigurationName and buildConfigurationName [18].
configurations {
productSrc
}
// create zip file which will be published
buildProductSrc(type: Copy) << {
// do the job
}
// publish zip which were build by buildProductSrc
uploadProductSrc {
repositories {
ivy {
url "http://ivy.repo/repo"
}
}
}
gradle buildProductSrc uploadProductSrc
,它将构建zip并将其发布在ivy存储库中。因为它不起作用,我是否正确理解它?
apply plugin: 'base'
configurations {
productSrc
}
// create zip file which will be published
buildProductSrc << { // unable to create specific task, for example 'type: Copy'
// do the job
}
// publish zip which were build by buildProductSrc
uploadProductSrc {
repositories {
ivy {
url "http://ivy.repo/repo"
}
}
}
最佳答案
要获得uploadConfigurationName
和buildConfigurationName
任务,您必须应用base
插件,或者是依次应用base
插件的插件(java
,groovy
等)。或者,您可以自己声明和配置此类任务(但需要更多的精力)。
关于groovy - 如何使用uploadConfigurationName和buildConfigurationName,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16939900/
我是一名优秀的程序员,十分优秀!