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