389bd06d0a
6bbd56dfd9
removed the -source 7 -target
7 javacopts from the //java:{core,lite} targets in order to improve
compatibility with more recent versions of javac. (see that commit for
more discussion of motivation.) but the commit left -source 7 -target
7 javacopts on the related //java/util target. i've confirmed with the
commit author that this was just an oversight, so remove these flags
as well.
17 lines
379 B
Python
17 lines
379 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
|
|
java_library(
|
|
name = "util",
|
|
srcs = glob([
|
|
"src/main/java/com/google/protobuf/util/*.java",
|
|
]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//external:error_prone_annotations",
|
|
"//external:gson",
|
|
"//external:guava",
|
|
"//java/core",
|
|
"//java/lite",
|
|
],
|
|
)
|