Sign in
pigweed
/
third_party
/
github
/
bazelbuild
/
rules_java
/
243a1d4f4b41d5c923868c94b3ebc6d8782580e6
/
.
/
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"
,
)