我有以下build.gradle
文件:
apply plugin:'java'
apply plugin:'groovy'
apply plugin:'eclipse'
apply plugin:'maven'
configurations {
deployerJars
}
repositories{
jcenter()
mavenCentral()
}
version '0.1.2'
group 'io.example'
dependencies{
implementation 'org.codehaus.groovy:groovy-all:2.4.10'
testImplementation 'org.spockframework:spock-core:1.0-groovy-2.4'
}
dependencies{
deployerJars "org.apache.maven.wagon:wagon-http:2.2"
}
uploadArchives {
repositories.mavenDeployer {
configuration = configurations.deployerJars
repository( url:'https://my-private-repo.bintray.com' ){
authentication userName:'myName', password:'secret' }
}
}
如果我运行任务,则会出现异常:
任务':uploadArchives'的执行失败。
无法发布配置“存档”
无法部署工件:无法传输工件......返回代码是:405,ReasonPhrase:不允许使用方法。
我尝试使用maven-publish
插件也没有运气。
我想念什么?