Multiple maven repositories in one gradle file

前端 未结 2 1807
面向向阳花
面向向阳花 2020-12-22 17:36

So my problem is how to add multiple maven repositories to one gradle file.

This DOESN’T work:

repositories {
    mavenCentral()
            


        
相关标签:
2条回答
  • 2020-12-22 18:00

    In short you have to do like this

    repositories {
      maven { url "http://maven.springframework.org/release" }
      maven { url "https://maven.fabric.io/public" }
    }
    

    Detail:

    You need to specify each maven URL in its own curly braces. Here is what I got working with skeleton dependencies for the web services project I’m going to build up:

    apply plugin: 'java'
    
    sourceCompatibility = 1.7
    version = '1.0'
    
    repositories {
      maven { url "http://maven.springframework.org/release" }
      maven { url "http://maven.restlet.org" }
      mavenCentral()
    }
    
    dependencies {
      compile group:'org.restlet.jee', name:'org.restlet', version:'2.1.1'
      compile group:'org.restlet.jee', name:'org.restlet.ext.servlet',version.1.1'
      compile group:'org.springframework', name:'spring-web', version:'3.2.1.RELEASE'
      compile group:'org.slf4j', name:'slf4j-api', version:'1.7.2'
      compile group:'ch.qos.logback', name:'logback-core', version:'1.0.9'
      testCompile group:'junit', name:'junit', version:'4.11'
    }
    

    Blog

    0 讨论(0)
  • 2020-12-22 18:03

    you have to do like this in your project level gradle file

    allprojects {
        repositories {
            jcenter()
            maven { url "http://dl.appnext.com/" }
            maven { url "https://maven.google.com" }
        }
    }
    
    0 讨论(0)
提交回复
热议问题