2017-03-21 11:58:19 -07:00
|
|
|
repositories {
|
|
|
|
flatDir {
|
|
|
|
dirs 'extralibs'
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
name "typesafe-maven-release"
|
|
|
|
url "https://repo.typesafe.com/typesafe/maven-releases"
|
|
|
|
}
|
|
|
|
ivy {
|
|
|
|
name "typesafe-ivy-release"
|
|
|
|
url "https://repo.typesafe.com/typesafe/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/'
|
|
|
|
}
|
2017-03-23 15:52:23 -07:00
|
|
|
maven { // this is required by various gradle plugins
|
2017-03-21 11:58:19 -07:00
|
|
|
name "gradle-plugins"
|
|
|
|
url 'http://plugins.gradle.org/m2/'
|
|
|
|
}
|
2017-03-23 15:52:23 -07:00
|
|
|
/* ivy { // this is required by metadata store Restli client within LinkedIn
|
|
|
|
url 'http://artifactory.corp.linkedin.com:8081/artifactory/repo'
|
|
|
|
layout 'pattern', {
|
|
|
|
ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
|
|
|
|
artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
|
|
|
|
m2compatible = true
|
|
|
|
}
|
|
|
|
} */
|
2017-03-21 11:58:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
subprojects {
|
|
|
|
project.repositories.addAll(rootProject.repositories)
|
|
|
|
}
|
|
|
|
} catch (Throwable t) {
|
|
|
|
//nothing
|
|
|
|
}
|