Skip to content

Commit db92d1d

Browse files
committed
allow to pull ES from local repo - part 2
1 parent 0395ac5 commit db92d1d

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

qa/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
}

qa/kerberos/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ configurations {
4040
}
4141

4242
boolean localRepo = project.getProperties().containsKey("localRepo")
43-
localRepo = false // TODO: Remove this once we can safely depend on build-tools again.
4443

4544
dependencies {
4645
compile project(":elasticsearch-hadoop-mr")

0 commit comments

Comments
 (0)