How to properly specify jcenter repository in maven config?

后端 未结 3 1405
迷失自我
迷失自我 2021-02-13 01:44

In Gradle, I need simply add:

  repositories {  
   jcenter()  
  }

What is the simplest and proper way to do the same in maven pom.xml or wher

3条回答
  •  执笔经年
    2021-02-13 02:36

    Just add a repositories section in your pom:

    
        
            jcenter
            jcenter
            https://jcenter.bintray.com
        
    
    

提交回复
热议问题