错误:无此类属性:类的组:org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer


115

我想在我的项目中使用RecyclerViewLib,为此我下载了它并将其作为模块导入到我的空“ hello world” Android项目中。我正在使用sdk Manager v24使用android studio v1.0.1,这是我的app / build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 17
buildToolsVersion "19.1.0"

defaultConfig {
    applicationId "com.example.mk.dragdrop4"
    minSdkVersion 14
    targetSdkVersion 17
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

这是我的library / build.gradle

apply plugin: 'com.android.library'

android {
    compileSdkVersion 17
    buildToolsVersion "19.1.0"

    defaultConfig {

        minSdkVersion 7
        targetSdkVersion 17
        versionCode 1
        versionName "1.0"
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:20.0.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

apply from: 'https://raw.github.com/twotoasters/gradle-mvn-push/master/gradle-mvn-push.gradle'

但是当我导入时,我收到此错误消息:

 Error:No such property: GROUP for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer 

有人可以帮我解决这个问题吗?

Answers:


284

从指定项目的build.gradle中删除此行

apply from: 'https://raw.github.com/twotoasters/gradle-mvn-push/master/gradle-mvn-push.gradle'

8
嗨,@ goonerdroid,谢谢您的工作。但是您能解释一下这条线吗?究竟能做什么?
最高

13
库具有用于上传到Maven存储库的gradle任务,这些任务需要为gradle环境设置一些属性,而在您的项目中,您不需要/不需要。
goonerDroid 2015年

47

我遇到了一个非常类似的问题。

我试图将QuickReturn功能包含到我的应用程序中:https : //github.com/felipecsl/QuickReturn

我使用的是Android Studios 1.0,将库导入项目后,它也出现了相同的错误。然后,我查看了该库的build.gradle文件,并删除了这一行,它起作用了:

apply from: 'gradle-mvn-push.gradle'

您刚导入的项目或模块。它也有一个gradle文件。该行可以在该gradle文件中找到。只要遵循@Simon的建议,您就可以开始了。谢谢西蒙。
Sagar Devanga

这是唯一的解决方案吗?
IgorGanapolsky'3

14

类似的问题。

删除的行:

apply from: 'maven-push.gradle'

从build.gradle并能够成功同步。


这样做对我有用。没有此声明会有什么后果?
Al Lelopath

我没有在任何build.gradle文件中看到此行。我该怎么办?
卡兰·塔卡


0
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'  // include latest gradle version and if project build with older version can update or can user same version

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.