作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Jenkins 中使用 JFrog Artifactory 插件,但是当我尝试构建项目时。我收到此错误:
Failed to apply plugin [id 'com.jfrog.artifactory'] Cannot cast object
'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention@2f54f83b'
with class 'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention' to class
'org.jfrog.gradle.plugin.artifactory.dsl.ArtifactoryPluginConvention'
我已经执行了对 this 的回答中的所有建议。和 this类似的问题,但仍然没有运气。
我使用 Gradle v2.14.1、Artifactory 插件 v2.6.0 和 JFrog Artifactory v4.4.3
编辑:
这是我项目的gradle文件
buildscript {
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:1.2"
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.4.3"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
TAG = "v" + "$VERSION_NAME" + "#" + String.format("%06d", Integer.parseInt("$VERSION_CODE"))
repositories {
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: 'sonar.gradle'
最佳答案
感谢 EyalBenMoshe 的评论,我意识到那个问题是我在我的 build.gradle 文件中使用了 JFrog Artifactory v4.4.3 插件,我也在我的 jenkins 中使用了 Artifactory 插件 v2.6.0,所以他们在哪里碰撞。解决方案是从我的 build.gradle 中删除 JFrog Artifactory v4.4.3 插件。
关于android - Gradle Artifactory 插件失败,出现 "Cannot cast object to ArtifactoryPluginConvention",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39165519/
我正在尝试在 Jenkins 中使用 JFrog Artifactory 插件,但是当我尝试构建项目时。我收到此错误: Failed to apply plugin [id 'com.jfrog.ar
这是获取人工插件的配置: buildscript { repositories { mavenCentral() maven { url 'http://jce
我是一名优秀的程序员,十分优秀!