Skip to content

Commit eab82b6

Browse files
committed
Fixed places.appkey substitution
1 parent 4c89bf7 commit eab82b6

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

managedvms/async-rest/pom.xml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,29 @@
3838
<artifactId>gcloud-maven-plugin</artifactId>
3939
<version>2.0.9.90.v20151210</version>
4040
<configuration>
41-
<gcloud_directory>/usr/local/java/gcloud-sdk/google-cloud-sdk</gcloud_directory>
41+
<gcloud_directory>/usr/local/google-cloud-sdk</gcloud_directory>
4242
<verbosity>debug</verbosity>
4343
<log_level>debug</log_level>
44+
<non_docker_mode>false</non_docker_mode>
45+
<docker_build>remote</docker_build>
46+
</configuration>
47+
</plugin>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-war-plugin</artifactId>
51+
<version>2.6</version>
52+
<configuration>
53+
<archiveClasses>true</archiveClasses>
54+
<failOnMissingWebXml>false</failOnMissingWebXml>
55+
<webResources>
56+
<resource>
57+
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
58+
<filtering>true</filtering>
59+
<targetPath>WEB-INF</targetPath>
60+
</resource>
61+
</webResources>
4462
</configuration>
4563
</plugin>
46-
4764
<plugin>
4865
<groupId>com.spotify</groupId>
4966
<artifactId>docker-maven-plugin</artifactId>

0 commit comments

Comments
 (0)