This is an automated email from the ASF dual-hosted git repository.
fchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new e4b22787b [CELEBORN-1159][BUILD] Update the scope of the
`protobuf-java` dependency from `protobuf` to `runtime`
e4b22787b is described below
commit e4b22787b8f6c6843f90e06c9f6f7cda52a041d6
Author: Fu Chen <[email protected]>
AuthorDate: Mon Dec 11 18:33:15 2023 +0800
[CELEBORN-1159][BUILD] Update the scope of the `protobuf-java` dependency
from `protobuf` to `runtime`
### What changes were proposed in this pull request?
As title
### Why are the changes needed?
Update the `protobuf-java` dependency scope from `protobuf` to `runtime`.
This modification allows users to upgrade the version of `protobuf-java`
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
Pass GA
Closes #2144 from cfmcgrady/protobuf-scope.
Authored-by: Fu Chen <[email protected]>
Signed-off-by: Fu Chen <[email protected]>
---
project/CelebornBuild.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/project/CelebornBuild.scala b/project/CelebornBuild.scala
index feef05ad9..6d1fc4235 100644
--- a/project/CelebornBuild.scala
+++ b/project/CelebornBuild.scala
@@ -318,7 +318,7 @@ object CelebornCommon {
commonSettings,
protoSettings,
libraryDependencies ++= Seq(
- Dependencies.protobufJava % "protobuf",
+ Dependencies.protobufJava,
Dependencies.findbugsJsr305,
Dependencies.guava,
Dependencies.commonsIo,