Skip to content

Commit

Permalink
Fixed places.appkey substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
gregw committed Feb 3, 2016
1 parent 4c89bf7 commit eab82b6
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions managedvms/async-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,29 @@
<artifactId>gcloud-maven-plugin</artifactId>
<version>2.0.9.90.v20151210</version>
<configuration>
<gcloud_directory>/usr/local/java/gcloud-sdk/google-cloud-sdk</gcloud_directory>
<gcloud_directory>/usr/local/google-cloud-sdk</gcloud_directory>
<verbosity>debug</verbosity>
<log_level>debug</log_level>
<non_docker_mode>false</non_docker_mode>
<docker_build>remote</docker_build>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<archiveClasses>true</archiveClasses>
<failOnMissingWebXml>false</failOnMissingWebXml>
<webResources>
<resource>
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>

<plugin>
<groupId>com.spotify</groupId>
<artifactId>docker-maven-plugin</artifactId>
Expand Down

0 comments on commit eab82b6

Please sign in to comment.