mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-12 19:49:36 +00:00
45 lines
1.2 KiB
Groovy
45 lines
1.2 KiB
Groovy
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/'
|
|
}
|
|
maven { // this is required by various gradle plugins
|
|
name "gradle-plugins"
|
|
url 'http://plugins.gradle.org/m2/'
|
|
}
|
|
/* 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
|
|
}
|
|
} */
|
|
}
|
|
|
|
try {
|
|
subprojects {
|
|
project.repositories.addAll(rootProject.repositories)
|
|
}
|
|
} catch (Throwable t) {
|
|
//nothing
|
|
}
|