mirror of
https://github.com/google/nomulus.git
synced 2025-06-22 20:30:46 +02:00
32 lines
786 B
Text
32 lines
786 B
Text
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # Apache License 2.0
|
|
|
|
java_library(
|
|
name = "soy",
|
|
exports = [
|
|
"@aopalliance//jar",
|
|
"@asm//jar",
|
|
"@asm_analysis//jar",
|
|
"@asm_commons//jar",
|
|
"@asm_util//jar",
|
|
"@bazel_tools//third_party:guava",
|
|
"@bazel_tools//third_party:jsr305",
|
|
"@bazel_tools//third_party:jsr330_inject",
|
|
"@guice//jar",
|
|
"@guice_assistedinject//jar",
|
|
"@guice_multibindings//jar",
|
|
"@icu4j//jar",
|
|
"@soy//jar",
|
|
],
|
|
)
|
|
|
|
java_binary(
|
|
name = "SoyParseInfoGenerator",
|
|
jvm_flags = ["-client"],
|
|
main_class = "com.google.template.soy.SoyParseInfoGenerator",
|
|
runtime_deps = [
|
|
"@args4j//jar",
|
|
":soy",
|
|
],
|
|
)
|