We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2132874 commit 8e2223cCopy full SHA for 8e2223c
build.gradle.kts
@@ -30,6 +30,15 @@ allprojects {
30
mavenCentral()
31
gradlePluginPortal()
32
}
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
42
43
44
tasks.register<GenerateGithubChangeLog>("generateChangeLog") {
0 commit comments