Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/search/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Gradle nebula发行版和bintray插件的版本设置为未指定_Gradle_Bintray_Netflix Nebula Plugins - Fatal编程技术网

Gradle nebula发行版和bintray插件的版本设置为未指定

Gradle nebula发行版和bintray插件的版本设置为未指定,gradle,bintray,netflix-nebula-plugins,Gradle,Bintray,Netflix Nebula Plugins,使用nebula.release和nebula.nebula-bintray-publishing插件会导致在文件名中正确设置版本,但不会在文件路径中正确设置版本。错误消息如下所示 Could not upload to 'https://api.bintray.com/content/[secure]/maven/Axon-Kotlin/unspecified/com/tylerthrailkill/axon-kotlin/0.0.2/axon-kotlin-0.0.2-sources.jar

使用nebula.release和nebula.nebula-bintray-publishing插件会导致在文件名中正确设置版本,但不会在文件路径中正确设置版本。错误消息如下所示

Could not upload to 'https://api.bintray.com/content/[secure]/maven/Axon-Kotlin/unspecified/com/tylerthrailkill/axon-kotlin/0.0.2/axon-kotlin-0.0.2-sources.jar': HTTP/1.1 409 Conflict [message:Unable to upload files: An artifact with the path 'com/tylerthrailkill/axon-kotlin/0.0.2/axon-kotlin-0.0.2-sources.jar' already exists]
忽略关于它已经存在的部分,我只是反复尝试使用相同的版本号,直到路径正确为止

这是我在垃圾箱里看到的

以下是我的gradle文件:

格雷德尔先生 格雷德尔出版公司
这显然是我使用的gradle bintray插件(通过nebula)版本中的一个bug。它已在gradle bintray插件1.8.4中解决

plugins {
    id 'nebula.kotlin' version '1.2.50'
    id 'nebula.maven-publish' version '8.0.0'
    id 'nebula.info' version '3.7.1'
    id "nebula.source-jar" version "8.0.0"
    id "nebula.javadoc-jar" version "8.0.0"
    id 'nebula.nebula-bintray-publishing' version '3.5.4'
    id 'nebula.release' version '6.3.5'
}

apply from: 'publishing.gradle'

group 'com.tylerthrailkill'
// don't specify version because release plugin does

repositories {
    mavenCentral()
    mavenLocal()
}
def axonVersion = '3.2.2'

dependencies {
//    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.41"
    compile group: "org.axonframework", name: "axon-core", version: axonVersion
    compile group: "org.axonframework", name: "axon-test", version: axonVersion
    compile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'

    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.0.3'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.0.3'
    testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
    testCompile "com.nhaarman:mockito-kotlin:1.5.0"

    testCompile "org.jetbrains.kotlin:kotlin-test:1.2.41"
    testCompile group: "org.axonframework", name: "axon-core", version: axonVersion
    testCompile group: "org.axonframework", name: "axon-test", version: axonVersion
}

test {
    useJUnitPlatform()

    // Always run tests, even when nothing changed.
    dependsOn 'cleanTest'

    // Show test results.
    testLogging {
        events "passed", "skipped", "failed"
    }
}
bintray {
    user = findProperty('bintrayUser') ?: System.getenv('BINTRAY_USER')
    key = findProperty('bintrayKey') ?: System.getenv('BINTRAY_KEY')

    pkg {
        userOrg = 'myusername'
        repo = 'maven'
        name = 'Axon-Kotlin'
        licenses = ['MIT']
        vcsUrl = 'https://github.com/snowe2010/axon-kotlin.git'
        websiteUrl = 'https://github.com/snowe2010/${project.name}'
        issueTrackerUrl = 'https://github.com/snowe2010/${project.name}/issues'
        vcsUrl = 'https://github.com/snowe2010/${project.name}.git'
        labels = ['axon', 'kotlin']
    }
}