Gradle Artifactory Plugin mit der Meldung "Objekt kann nicht umgewandelt werden" org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention "..."
Hier ist die Konfiguration, um das Artifactory-Plugin zu erhalten:
buildscript {
repositories {
mavenCentral()
maven { url 'http://jcenter.bintray.com' }
}
dependencies {
classpath group:'org.jfrog.buildinfo', name: 'build-info-extractor-gradle', version: '3.0.1'
}
}
apply plugin:'com.jfrog.artifactory'
apply plugin:'ivy-publish'
...some publish spec stuff...
Ich laufe gradle (2.3) und bekomme:
> Failed to apply plugin [id 'com.jfrog.artifactory']
> Cannot cast object 'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention@6b6c7be4' with class 'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention' to class 'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention'
Sieht auf jeden Fall nach einem Klassenpfad-Problem aus, aber ich habe buchstäblich dieses Projekt und ein Geschwisterprojekt, das denselben Satz von gradle / artifactory-Konfigurationen verwendet und das eine funktioniert und das andere nicht. Beide sind Teil desselben Top-Level-Projekts. Gleiches JDK (1.8.0_20). Selber Gradle. Gleich alles.
Ich bin ratlos ...