web-dev-qa-db-ja.com

Maven設定でjcenterリポジトリを適切に指定するにはどうすればよいですか?

Gradleでは、単に追加する必要があります:

  repositories {  
   jcenter()  
  }

Maven pom.xmlで同じことをする最も簡単で適切な方法は何ですか、またはjcenterリポジトリの正しいURLをどこで取得できますか?.

10
Igor Rybak

以下のようにsettings.xmlを定義する必要があります。 〜/ .m2/settings.xmlで定義すると、Mavenに対してグローバルになります。プロジェクトのリソースとして定義する場合は、-sパラメータを使用してバインドできます。

mvn -s settings.xmlコンパイル

<?xml version='1.0' encoding='UTF-8'?>
<settings xsi:schemaLocation='http://maven.Apache.org/SETTINGS/1.0.0 http://maven.Apache.org/xsd/settings-1.0.0.xsd'
          xmlns='http://maven.Apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
    <profiles>
        <profile>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray</name>
                    <url>http://jcenter.bintray.com</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>central</id>
                    <name>bintray-plugins</name>
                    <url>http://jcenter.bintray.com</url>
                </pluginRepository>
            </pluginRepositories>
            <id>bintray</id>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>bintray</activeProfile>
    </activeProfiles>
</settings>
15
Sergio Gragera

JFrog JCenterの公式ドキュメントは次の場所にあります https://bintray.com/bintray/jcenter

SET ME UP!右上隅のボタン。

SET ME UP!

5
galusben

この settings.xml の例を使用できます。
参照 として使用できます

2
Royg