blob: 3879c4a99c2d82660adf18516a889a427474fbb6 [file] [log] [blame]
java_library(
name = "java-prettify",
srcs = glob(["src/**/*.java"]),
resources = [
"src/prettify/example/example.html",
"src/prettify/example/text.txt",
],
visibility = ["//visibility:public"],
)
java_binary(
name = "java-prettify-example",
main_class = "prettify.example.Example",
runtime_deps = [":java-prettify"],
)