blob: 717625343bbda198334b69054e8e16054e443372 [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
java_binary(
name = "hello-world",
main_class = "com.example.myproject.Greeter",
runtime_deps = [":hello-lib"],
)
java_library(
name = "hello-lib",
srcs = glob(["*.java"]),
)
java_binary(
name = "hello-resources",
main_class = "com.example.myproject.Greeter",
runtime_deps = [":custom-greeting"],
)
java_library(
name = "custom-greeting",
srcs = ["Greeter.java"],
resources = ["//examples/java-native/src/main/resources:greeting"],
)