Skip to content

Commit c62d193

Browse files
committed
change dependency on dev.cel:cel
1 parent 5a31706 commit c62d193

File tree

5 files changed

+7
-12
lines changed

5 files changed

+7
-12
lines changed

MODULE.bazel

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
2121
"com.google.re2j:re2j:1.8",
2222
"com.google.s2a.proto.v2:s2a-proto:0.1.3",
2323
"com.google.truth:truth:1.4.5",
24-
"dev.cel:runtime:0.11.1",
25-
"dev.cel:compiler:0.11.1",
24+
"dev.cel:cel:0.11.1",
2625
"com.squareup.okhttp:okhttp:2.7.5",
2726
"com.squareup.okio:okio:2.10.0", # 3.0+ needs swapping to -jvm; need work to avoid flag-day
2827
"io.netty:netty-buffer:4.1.130.Final",

gradle/libs.versions.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ checkstyle = "com.puppycrawl.tools:checkstyle:10.26.1"
3434
# checkstyle 10.0+ requires Java 11+
3535
# See https://checkstyle.sourceforge.io/releasenotes_old_8-35_10-26.html#Release_10.0
3636
# checkForUpdates: checkstylejava8:9.+
37-
cel-runtime = "dev.cel:runtime:0.11.1"
38-
cel-compiler = "dev.cel:compiler:0.11.1"
37+
cel = "dev.cel:cel:0.11.1"
3938
checkstylejava8 = "com.puppycrawl.tools:checkstyle:9.3"
4039
commons-math3 = "org.apache.commons:commons-math3:3.6.1"
4140
conscrypt = "org.conscrypt:conscrypt-openjdk-uber:2.5.2"

repositories.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ IO_GRPC_GRPC_JAVA_ARTIFACTS = [
2525
"com.google.re2j:re2j:1.8",
2626
"com.google.s2a.proto.v2:s2a-proto:0.1.3",
2727
"com.google.truth:truth:1.4.5",
28-
"dev.cel:runtime:0.11.1",
29-
"dev.cel:compiler:0.11.1",
28+
"dev.cel:cel:0.11.1",
3029
"com.squareup.okhttp:okhttp:2.7.5",
3130
"com.squareup.okio:okio:2.10.0", # 3.0+ needs swapping to -jvm; need work to avoid flag-day
3231
"io.netty:netty-buffer:4.1.130.Final",

xds/BUILD.bazel

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ java_library(
4141
artifact("com.google.errorprone:error_prone_annotations"),
4242
artifact("com.google.guava:guava"),
4343
artifact("com.google.re2j:re2j"),
44-
artifact("dev.cel:runtime"),
45-
artifact("dev.cel:compiler"),
44+
artifact("dev.cel:cel"),
4645
artifact("io.netty:netty-buffer"),
4746
artifact("io.netty:netty-codec"),
4847
artifact("io.netty:netty-common"),
@@ -103,6 +102,8 @@ JAR_JAR_RULES = [
103102
"rule io.envoyproxy.** io.grpc.xds.shaded.io.envoyproxy.@1",
104103
"rule udpa.annotations.** io.grpc.xds.shaded.udpa.annotations.@1",
105104
"rule xds.annotations.** io.grpc.xds.shaded.xds.annotations.@1",
105+
"rule dev.cel.** io.grpc.xds.shaded.dev.cel.@1",
106+
"rule cel.** io.grpc.xds.shaded.cel.@1",
106107
]
107108

108109
jar_jar(

xds/build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ dependencies {
5656
libraries.re2j,
5757
libraries.auto.value.annotations,
5858
libraries.protobuf.java.util
59-
implementation(libraries.cel.runtime) {
60-
exclude group: 'com.google.protobuf', module: 'protobuf-java'
61-
}
62-
implementation(libraries.cel.compiler) {
59+
implementation(libraries.cel) {
6360
exclude group: 'com.google.protobuf', module: 'protobuf-java'
6461
}
6562
def nettyDependency = implementation project(':grpc-netty')

0 commit comments

Comments
 (0)