Sign in
bazel
/
rules_java
/
8ea6c072a00ba01aa5eefad9b3740df9df2b00a0
/
.
/
examples
/
hello_world
/
BUILD
blob: 96b2a5ff87faeb2a568520c30dfeaed2bd1c226a [
file
] [
log
] [
blame
]
load
(
"//java:defs.bzl"
,
"java_binary"
)
java_binary
(
name
=
"hello_world"
,
srcs
=
[
"HelloWorld.java"
],
main_class
=
"HelloWorld"
,
)