File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ subprojects {
3232 // a local repo if we're currently in the release manager (unlikely, but be future proof).
3333 buildscript {
3434 boolean localRepo = project. getProperties(). containsKey(" localRepo" )
35- localRepo = false // TODO: Remove this once we can safely depend on build-tools again.
3635 repositories {
3736 jcenter()
3837 mavenCentral()
@@ -44,11 +43,12 @@ subprojects {
4443 }
4544 }
4645 dependencies {
47- if (localRepo) {
48- classpath name : " build-tools-${ version} "
49- } else {
46+ // // TODO: Uncomment this once we can safely depend on build-tools again.
47+ // if (localRepo) {
48+ // classpath name: "build-tools-${version}"
49+ // } else {
5050 classpath group : ' org.elasticsearch.gradle' , name : ' build-tools' , version : project. ext. buildToolsVersion
51- }
51+ // }
5252 }
5353 }
5454}
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ configurations {
4040}
4141
4242boolean localRepo = project. getProperties(). containsKey(" localRepo" )
43- localRepo = false // TODO: Remove this once we can safely depend on build-tools again.
4443
4544dependencies {
4645 compile project(" :elasticsearch-hadoop-mr" )
You can’t perform that action at this time.
0 commit comments