Skip to content

Commit e76914c

Browse files
authored
Clean up build tool dependencies (#41336)
We are no longer using these dependencies. Relates to #41061 since the class that seems to be leaking is both part of Gradle and the logging jar.
1 parent 056194f commit e76914c

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

buildSrc/build.gradle

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ repositories {
113113

114114
dependencies {
115115
compile localGroovy()
116-
compile "com.carrotsearch.randomizedtesting:junit4-ant:${props.getProperty('randomizedrunner')}"
117-
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${props.getProperty('randomizedrunner')}"
118116

119117
compile 'com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3'
120118
compile 'com.netflix.nebula:nebula-publishing-plugin:4.4.4'
@@ -127,16 +125,7 @@ dependencies {
127125
compile 'de.thetaphi:forbiddenapis:2.6'
128126
compile 'com.avast.gradle:gradle-docker-compose-plugin:0.8.12'
129127
testCompile "junit:junit:${props.getProperty('junit')}"
130-
}
131-
132-
133-
// Gradle 2.14+ removed ProgressLogger(-Factory) classes from the public APIs
134-
// Use logging dependency instead
135-
// Gradle 4.3.1 stopped releasing the logging jars to jcenter, just use the last available one
136-
GradleVersion logVersion = GradleVersion.current() > GradleVersion.version('4.3') ? GradleVersion.version('4.3') : GradleVersion.current()
137-
138-
dependencies {
139-
compileOnly "org.gradle:gradle-logging:${logVersion.getVersion()}"
128+
testCompile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${props.getProperty('randomizedrunner')}"
140129
}
141130

142131
/*****************************************************************************

0 commit comments

Comments
 (0)