将 Maven 存储库添加到 build.gradle

问题描述 投票:0回答:6

我在 Android Studio 的 build.gradle 中添加了一个自定义的 Maven 存储库,但是没有找到依赖项

Maven 存储库和依赖项

<repository>
    <id>achartengine</id>
    <name>Public AChartEngine repository</name>
    <url>https://repository-achartengine.forge.cloudbees.com/snapshot/</url>
</repository>

<dependency>
    <groupId>org.achartengine</groupId>
    <artifactId>achartengine</artifactId>
    <version>1.2.0</version>
</dependency>

build.gradle

buildscript {
    repositories {
        mavenCentral()
        maven {
            url "https://repository-achartengine.forge.cloudbees.com/snapshot/"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.6.+'
    }
}
apply plugin: 'android'

dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile group: 'org.achartengine', name: 'achartengine', version: '1.2.0'
}

android {
    compileSdkVersion 19
    buildToolsVersion "19"

    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
            aidl.srcDirs = ['src']
            renderscript.srcDirs = ['src']
            res.srcDirs = ['res']
            assets.srcDirs = ['assets']
        }

        // Move the tests to tests/java, tests/res, etc...
        instrumentTest.setRoot('tests')

        // Move the build types to build-types/<type>
        // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
        // This moves them out of them default location under src/<type>/... which would
        // conflict with src/ being used by the main source set.
        // Adding new build types or product flavors should be accompanied
        // by a similar customization.
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}

Android Studio 中的错误信息:

A problem occurred configuring root project 'My-MobileAndroid'.
> Failed to notify project evaluation listener.
> Could not resolve all dependencies for configuration ':_DebugCompile'.
  > Could not find org.achartengine:achartengine:1.2.0.
    Required by:
        :My-MobileAndroid:unspecified

我在 build.gradle 中缺少什么?

android maven gradle android-studio achartengine
6个回答
172
投票

之后

apply plugin: 'com.android.application'

你应该添加这个:

  repositories {
        mavenCentral()
        maven {
            url "https://repository-achartengine.forge.cloudbees.com/snapshot/"
        }
    }

@Benjamin解释了原因

如果你有一个带身份验证的行家,你可以使用:

repositories {
            mavenCentral()
            maven {
               credentials {
                   username xxx
                   password xxx
               }
               url    'http://mymaven/xxxx/repositories/releases/'
            }
}

顺序很重要


93
投票

您需要在

buildscript
之外定义存储库。
buildscript
配置块只为你的构建脚本的类路径设置存储库和依赖项,而不是你的应用程序。


40
投票

Android Studio 用户:

如果你想使用等级,去http://search.maven.org/ 并搜索你的maven repo。然后,单击“最新版本”,在左下角的详细信息页面中,您将看到“Gradle”,然后您可以在其中复制/粘贴该链接到应用程序的 build.gradle 中。


9
投票

您必须将

repositories
添加到您的构建文件中。对于 Maven 存储库,您必须在存储库名称前加上
maven{}

repositories {
  maven { url "http://maven.springframework.org/release" }
  maven { url "http://maven.restlet.org" }
  mavenCentral()
}

8
投票

在主

buildscript
文件的
build.gradle
配置块之外添加 maven 存储库,如下所示:

repositories {
        maven {
            url "https://github.com/jitsi/jitsi-maven-repository/raw/master/releases"
        }
    }

确保在以下内容之后添加它们:

apply plugin: 'com.android.application'

3
投票

这是为Kotlin DSL (build.gradle.kts):

repositories {
    mavenCentral()
    maven("https://jitpack.io")
    // OR another notation:
    // maven {
    //     url = uri("https://jitpack.io")
    // }
}

您还可以在较新版本的 Gradle(Gradle 7.4)中的 settings.gradle[.kts] 文件中集中所有子项目的存储库声明:

dependencyResolutionManagement {
    repositories {
        mavenCentral()
        maven("https://jitpack.io")
    }
}

在 Gradle 文档网站上查看完整指南

© www.soinside.com 2019 - 2024. All rights reserved.