无法构建Bintray Gradle库项目 - ClassNotFoundException

8

我仍在努力让我的 Gradle 脚本工作,我已经查看了所有日志,似乎有一些类文件缺失。以下是错误信息。

org.gradle.api.GradleScriptException: A problem occurred evaluating project ':horizontalrecyclerview'.

Caused by: java.lang.NoClassDefFoundError: org/gradle/api/publication/maven/internal/DefaultMavenFactory
        at org.gradle.api.plugins.AndroidMavenPlugin.apply(AndroidMavenPlugin.java:88)
        at org.gradle.api.plugins.AndroidMavenPlugin.apply(AndroidMavenPlugin.java:57)
        at org.gradle.api.internal.plugins.ImperativeOnlyPluginApplicator.applyImperative(Imper

Caused by: java.lang.ClassNotFoundException: org.gradle.api.publication.maven.internal.DefaultMavenFactory
        ... 51 more

这是我的build.gradle文件。
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
version = "1.0.0"
android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 8
        targetSdkVersion 21
        versionCode 1
        versionName "1.0.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
def siteUrl = 'https://github.com/CROSP/AndroidHorizontalRecyclerView'      // Homepage URL of the library
def gitUrl = 'https://github.com/CROSP/AndroidHorizontalRecyclerView.git'   // Git repository URL
group = "com.github.crosp.horizontalrecyclerview"                      // Maven Group ID for the artifact

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'org.jsoup:jsoup:1.8.1'
    compile 'com.android.support:appcompat-v7:22.1.1'
    compile 'com.android.support:recyclerview-v7:21.0.3'

}
install {
    repositories.mavenInstaller {
        // This generates POM.xml with proper parameters
        pom {
            project {
                packaging 'aar'

                // Add your description here
                name 'Android Horizontal Recycler View with Headerr'
                description = 'Android Horizontal Recycler View with Header project for displaying horizontal list on Android '
                url siteUrl

                // Set your license
                licenses {
                    license {
                        name 'The Apache Software License, Version 2.0'
                        url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
                    }
                }
                developers {
                    developer {
                        id 'crosp'
                        name 'Alexandr Crospenko'
                        email 'crosp@xakep.ru'
                    }
                }
                scm {
                    connection gitUrl
                    developerConnection gitUrl
                    url siteUrl

                }
            }
        }
    }
}

task sourcesJar(type: Jar) {
    from android.sourceSets.main.java.srcDirs
    classifier = 'sources'
}

task javadoc(type: Javadoc) {
    source = android.sourceSets.main.java.srcDirs
    classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}

task javadocJar(type: Jar, dependsOn: javadoc) {
    classifier = 'javadoc'
    from javadoc.destinationDir
}
artifacts {
    archives javadocJar
    archives sourcesJar
}

Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

// https://github.com/bintray/gradle-bintray-plugin
bintray {
    user = properties.getProperty("bintray.user")
    key = properties.getProperty("bintray.apikey")

    configurations = ['archives']
    pkg {
        repo = "maven"
        // it is the name that appears in bintray when logged
        name = "crosp"
        websiteUrl = siteUrl
        vcsUrl = gitUrl
        licenses = ["Apache-2.0"]
        publish = true
        version {
            gpg {
                sign = true //Determines whether to GPG sign the files. The default is false
                passphrase = properties.getProperty("bintray.gpg.password") //Optional. The passphrase for GPG signing'
            }
//            mavenCentralSync {
//                sync = true //Optional (true by default). Determines whether to sync the version to Maven Central.
//                user = properties.getProperty("bintray.oss.user") //OSS user token
//                password = properties.getProperty("bintray.oss.password") //OSS user password
//                close = '1' //Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
//            }
        }
    }
}

也许有人已经遇到过这样的问题或者知道如何解决它?请帮忙,因为我已经整整一天都没有解决它。谢谢。

似乎这个类已经被移除了。尝试升级Gradle版本。 - Opal
1个回答

14

我正在做同样的事情(将我的aar上传到bintray),我遇到了同样的问题。

我知道这是在gradle库中发生的,所以我通过以下方式将我的gradle版本从2.4.0更改为2.2.1:

  

文件 -> 项目结构(或触发快捷键command + ;)->单击对话框中左侧列表中的Project->在Gradle文本编辑框中输入2.2.1。

我通过这种方式解决了这个错误。在README.md文件中查找注释部分。

希望这能帮助你。

附注:如果您想使用gradle 2.4.0,则应在项目根build.gradle中的类路径中配置android-maven-plugin版本为1.3,如下所示:

com.github.dcendents:android-maven-gradle-plugin:1.3


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接