Sign in
◑
Theme
bazel
/
rules_java
/
59e77d1d2b00cde7f4592201ae6e30d0278071c2
/
.
/
examples
/
hello_world
/
BUILD
blob: f8ee95776edd84b07be8fe4686c8c6bdfc537ad2 [
file
]
load
(
"//java:java_binary.bzl"
,
"java_binary"
)
package
(
default_applicable_licenses
=
[
"@rules_java//:license"
])
java_binary
(
name
=
"hello_world"
,
srcs
=
[
"com/google/HelloWorld.java"
],
main_class
=
"com.google.HelloWorld"
,
)