Make App Engine API JAR show up in WAR

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=129356083
This commit is contained in:
Justine Tunney 2016-08-04 11:53:02 -07:00
parent eb792e89ef
commit 51bdb26e7d

View file

@ -19,9 +19,13 @@ package_group(
zip_file(
name = "common_war",
srcs = ["//third_party/java/appengine:appengine-api"],
srcs = [
"@appengine_api_sdk//jar",
],
out = "mandatory_stuff.war",
mappings = {"third_party/java/appengine": "WEB-INF/lib"},
mappings = {
"external/appengine_api_sdk/jar": "WEB-INF/lib",
},
visibility = ["//visibility:private"],
)