22

In Gradle, I need simply add:

  repositories {  
   jcenter()  
  }

What is the simplest and proper way to do the same in maven pom.xml or where can I get right url for jcenter repository.

Ihor Rybak
  • 3,091
  • 2
  • 25
  • 32
  • Yo can use this [settings.xml](https://stackoverflow.com/questions/44265547/how-to-properly-specify-jcenter-repository-in-maven-config) example. You can use this as [reference](https://maven.apache.org/settings.html#Repositories) – Royg Jun 01 '17 at 09:06

3 Answers3

26

You have to define settings.xml like the following. If you define it in ~/.m2/settings.xml it will be global to your maven. If you define it as a resource of your project you can bind it with the -s parameter:

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>
Sadeq Dousti
  • 3,346
  • 6
  • 35
  • 53
Sergio Gragera
  • 786
  • 7
  • 10
22

Just add a repositories section in your pom:

<repositories>
    <repository>
        <id>jcenter</id>
        <name>jcenter</name>
        <url>https://jcenter.bintray.com</url>
    </repository>
</repositories>
David A
  • 490
  • 4
  • 10
  • url can be copied from the upper right corner of the repository page. For example, [Spring releases repository](https://bintray.com/spring/jars) has `https://dl.bintray.com/spring/jars` maven repository url – Ilya Serbis Nov 18 '20 at 20:28
13

The official documentation from JFrog JCenter is in: https://bintray.com/bintray/jcenter

Hit the SET ME UP! button on the upper right corner.

SET ME UP!

galusben
  • 5,948
  • 6
  • 33
  • 52