Skip to content
Snippets Groups Projects
Commit eb09e75f authored by Richard Alam's avatar Richard Alam
Browse files

Add new maven repos

 Running build.sh was failing because it cannot resolve some dependencies off of https://repo.grails.org/grails/core repo.
 Added other repos to use as location of dependencies.
parent 96474f2c
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,8 @@ buildscript {
repositories {
jcenter()
mavenLocal()
maven { url "https://repo1.maven.org/maven2" }
maven { url "https://repo.grails.org/artifactory/core" }
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
......@@ -40,6 +42,8 @@ processResources.dependsOn copyWebInf
repositories {
jcenter()
mavenLocal()
maven { url "https://repo1.maven.org/maven2" }
maven { url "https://repo.grails.org/artifactory/core" }
maven { url "https://repo.grails.org/grails/core" }
}
......@@ -118,4 +122,4 @@ test {
showCauses = true
exceptionFormat = "full"
}
}
\ No newline at end of file
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment