如何在 Maven 配置中正确指定 jcenter 存储库?
How to properly specify jcenter repository in maven config?
在Gradle中,我只需添加:
repositories {
jcenter()
}
在 maven 中执行相同操作的最简单和正确的方法是什么 pom.xml 或者我在哪里可以得到正确的 url jcenter 存储库。
您必须像下面这样定义 settings.xml。如果你在 ~/.m2/settings.xml
中定义它,它将对你的 maven 是全局的。如果将其定义为项目的资源,则可以使用 -s
参数绑定它:
mvn -s settings.xml compile
<?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>https://jcenter.bintray.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray-plugins</name>
<url>https://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>
JFrog JCenter 的官方文档在:
https://bintray.com/bintray/jcenter
点击设置我!右上角的按钮。
只需在您的 pom 中添加一个存储库部分:
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
在Gradle中,我只需添加:
repositories {
jcenter()
}
在 maven 中执行相同操作的最简单和正确的方法是什么 pom.xml 或者我在哪里可以得到正确的 url jcenter 存储库。
您必须像下面这样定义 settings.xml。如果你在 ~/.m2/settings.xml
中定义它,它将对你的 maven 是全局的。如果将其定义为项目的资源,则可以使用 -s
参数绑定它:
mvn -s settings.xml compile
<?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>https://jcenter.bintray.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray-plugins</name>
<url>https://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>
JFrog JCenter 的官方文档在: https://bintray.com/bintray/jcenter
点击设置我!右上角的按钮。
只需在您的 pom 中添加一个存储库部分:
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>