creating a single target to rollup maven artifacts (#8776)

pull/7268/head
Derek Perez 4 years ago committed by GitHub
parent 5df472af15
commit c684434ecb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 20
      java/BUILD
  2. 15
      java/core/BUILD
  3. 11
      java/util/BUILD

@ -1,8 +1,16 @@
test_suite(
name = "tests",
tests = [
"//java/core:tests",
"//java/lite:tests",
"//java/util:tests",
],
name = "tests",
tests = [
"//java/core:tests",
"//java/lite:tests",
"//java/util:tests",
],
)
filegroup(
name = "release",
srcs = [
"//java/core:release", # contains lite.
"//java/util:release",
]
)

@ -142,6 +142,21 @@ java_export(
],
)
filegroup(
name = "release",
visibility = ["//java:__pkg__"],
srcs = [
":core-pom",
":core-maven-source",
":core-docs",
":core-project",
":lite-pom",
":lite-maven-source",
":lite-docs",
":lite-project",
]
)
proto_lang_toolchain(
name = "toolchain",
command_line = "--java_out=$(OUT)",

@ -20,6 +20,17 @@ java_export(
],
)
filegroup(
name = "release",
visibility = ["//java:__pkg__"],
srcs = [
":util-pom",
":util-maven-source",
":util-docs",
":util-project",
]
)
proto_library(
name = "test_protos",
srcs = glob(["src/test/proto/**/*.proto"]),

Loading…
Cancel
Save