facebook twitter hatena line email

「Android/開発環境/AndroidStudio/maven」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==基本maven追加== プロジェクト直下のbuild.gradle repositories { jcenter() // リポジトリに JCenter を使う mavenCentral() // リポ...」)
(相違点なし)

2018年8月2日 (木) 18:54時点における版

基本maven追加

プロジェクト直下のbuild.gradle

repositories {
    jcenter()       // リポジトリに JCenter を使う
    mavenCentral()  // リポジトリに Maven Centralを使う
}

独自maven追加

プロジェクト直下のbuild.gradle

repositories {
    jcenter()
    maven {
        url "http://repo.mycompany.com/maven2"
    }
}

参考

独自の Maven リポジトリを使用する http://maku77.github.io/gradle/repository/specify-maven-url.html