Showing posts with label bazel. Show all posts
Showing posts with label bazel. Show all posts

Monday, May 16, 2022

Build Jar : Add multiple class files in the Jar using Bazel

 Add multiple class files in the Jar using Bazel 


#---------------------------
#Bazel build parent.jar
#This would add Parent.scala , Child1.scala , Child2.scala in the jar file creatd
#---------------------------
load("@io_bazel_rules_scala//scala:scala.bzl", "scala_binary","scala_library")
package(default_visibility = ["//visibility:public"])
scala_library(
name = "parent",
srcs =
["Parent.scala",
"//src/main/child1:Child1.scala",
"//src/main/child2:Child2.scala",
],
deps = [
"//src/main/child1",
"//src/main/child2",
],
)
view raw BUILD hosted with ❤ by GitHub