Fix builds after refactor (#99)

Fixed both GAE and proxy builds after #90 refactored the code structure.

Also removed now unnecessary chmod and chown from GCB scripts.
This commit is contained in:
Lai Jiang 2019-06-13 18:01:30 -04:00 committed by GitHub
parent 9eb54f94f8
commit ad20178f18
4 changed files with 4 additions and 13 deletions

View file

@ -21,14 +21,14 @@ apply plugin: 'war'
// plugin will recognize this as an app-engine standard app (and also
// obtains the appengine-web.xml from the correct location)
project.convention.plugins['war'].webAppDirName =
"../../java/google/registry/env/${environment}/${project.name}"
"../../core/src/main/java/google/registry/env/${environment}/${project.name}"
apply plugin: 'com.google.cloud.tools.appengine'
// Get the web.xml file for the service.
war {
webInf {
from "../../java/google/registry/env/common/${project.name}/WEB-INF"
from "../../core/src/main/java/google/registry/env/common/${project.name}/WEB-INF"
}
}