datahub/gradle/scripts/repositories.gradle
Mars Lan d18595f39d
Update Gralde to 4.9 & Scala to 2.11 (#1315)
* Update Gralde to 4.9 & Scala to 2.11

* Update play.gradle

* Update repositories.gradle
2018-08-10 17:51:30 -07:00

36 lines
814 B
Groovy

repositories {
flatDir {
dirs 'extralibs'
}
mavenCentral()
maven {
name "lightbend-maven-release"
url "https://repo.lightbend.com/lightbend/maven-releases"
}
ivy {
name "lightbend-ivy-release"
url "https://repo.lightbend.com/lightbend/ivy-releases"
layout "ivy"
}
maven { // this is required for hive
name "conjars-maven-release"
url 'http://conjars.org/repo'
}
maven { // this is required by confluent kafka common
name "confluent-maven-release"
url 'http://packages.confluent.io/maven/'
}
maven { // this is required by various gradle plugins
name "gradle-plugins"
url 'http://plugins.gradle.org/m2/'
}
}
try {
subprojects {
project.repositories.addAll(rootProject.repositories)
}
} catch (Throwable t) {
//nothing
}