Sign in
◑
Theme
bazel
/
rules_java
/
14ed0f17331aae0d9622785499d3aebaf45b2301
/
.
/
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"
,
)