We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d70da47 commit 3772614Copy full SHA for 3772614
1 file changed
standalone/build.gradle.kts
@@ -36,8 +36,9 @@ dependencies {
36
val shadowJar = tasks.named<ShadowJar>("shadowJar")
37
38
shadowJar.configure {
39
- relocate("com.google.protobuf", "org.projectnessie.cel.relocated.protobuf")
40
- relocate("org.agrona", "org.projectnessie.cel.relocated.agrona")
+ // relocate com.google.api/protobuf/rpc classes
+ relocate("com.google", "org.projectnessie.cel.relocated.com.google")
41
+ relocate("org.agrona", "org.projectnessie.cel.relocated.org.agrona")
42
manifest {
43
attributes["Specification-Title"] = "Common-Expression-Language - dependency-free CEL"
44
attributes["Specification-Version"] = libs.protobuf.java.get().version
0 commit comments