Sign in
bazel
/
rules_java
/
refs/heads/master
/
.
/
examples
/
hello_world
/
BUILD
blob: f8ee95776edd84b07be8fe4686c8c6bdfc537ad2 [
file
] [
log
] [
blame
] [
edit
]
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"
,
)