xref: /aosp_15_r20/external/bazelbuild-rules_java/examples/hello_world/BUILD (revision abe8e1b943c923005d847f1e3cf6637de4ed1a1f)
1load("//java:defs.bzl", "java_binary")
2
3java_binary(
4    name = "hello_world",
5    srcs = ["com/google/HelloWorld.java"],
6    main_class = "com.google.HelloWorld",
7)
8