Skip to content

Commit 8e2223c

Browse files
authored
Force all log4j dependencies to be 2.15.0 (#3006)
1 parent 2132874 commit 8e2223c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle.kts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ allprojects {
3030
mavenCentral()
3131
gradlePluginPortal()
3232
}
33+
34+
// TODO: remove after https://github.com/JetBrains/intellij-ui-test-robot/pull/136
35+
configurations.all {
36+
resolutionStrategy.eachDependency {
37+
if (requested.group == "org.apache.logging.log4j") {
38+
useVersion("2.15.0")
39+
}
40+
}
41+
}
3342
}
3443

3544
tasks.register<GenerateGithubChangeLog>("generateChangeLog") {

0 commit comments

Comments
 (0)