Skip to content

Commit 35fff49

Browse files
authored
Exclude ibm icu (#5910)
1 parent b3434f6 commit 35fff49

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

rewrite-java/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ dependencies {
3737
api("io.micrometer:micrometer-core:1.9.+")
3838
api("org.jetbrains:annotations:latest.release")
3939

40-
antlrGeneration("org.antlr:antlr4:4.13.2")
40+
antlrGeneration("org.antlr:antlr4:4.13.2") {
41+
exclude(group = "com.ibm.icu", module = "icu4j")
42+
}
4143
implementation("org.antlr:antlr4-runtime:4.13.2")
4244
// Pinned to 9.+ because 10.x does not support Java 8: https://checkstyle.sourceforge.io/#JRE_and_JDK
4345
checkstyle("com.puppycrawl.tools:checkstyle:9.+") {

rewrite-protobuf/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ dependencies {
2525

2626
compileOnly(project(":rewrite-test"))
2727

28-
antlrGeneration("org.antlr:antlr4:4.13.2")
28+
antlrGeneration("org.antlr:antlr4:4.13.2"){
29+
exclude(group = "com.ibm.icu", module = "icu4j")
30+
}
2931
implementation("org.antlr:antlr4-runtime:4.13.2")
3032
implementation("io.micrometer:micrometer-core:1.9.+")
3133

rewrite-toml/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ dependencies {
2323
implementation("org.antlr:antlr4-runtime:4.13.2")
2424
implementation("io.micrometer:micrometer-core:1.9.+")
2525

26-
antlrGeneration("org.antlr:antlr4:4.13.2")
26+
antlrGeneration("org.antlr:antlr4:4.13.2"){
27+
exclude(group = "com.ibm.icu", module = "icu4j")
28+
}
2729

2830
compileOnly(project(":rewrite-test"))
2931

rewrite-xml/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ dependencies {
2525

2626
compileOnly(project(":rewrite-test"))
2727

28-
antlrGeneration("org.antlr:antlr4:4.13.2")
28+
antlrGeneration("org.antlr:antlr4:4.13.2"){
29+
exclude(group = "com.ibm.icu", module = "icu4j")
30+
}
2931
implementation("org.antlr:antlr4-runtime:4.13.2")
3032
implementation("io.micrometer:micrometer-core:1.9.+")
3133
implementation("org.apache.commons:commons-text:1.11.+")

0 commit comments

Comments
 (0)