Skip to content

Commit 06a2bb0

Browse files
author
Frank Natividad
committed
Fix pom.xml and README
1 parent 30df589 commit 06a2bb0

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

appengine/endpoints-frameworks-v2/backend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To deploy the sample API:
4141

4242
0. Invoke the `gcloud` command to deploy the API configuration file:
4343

44-
gcloud service-management deploy openapi.json
44+
gcloud service-management deploy target/openapi-docs/openapi.json
4545

4646
0. Deploy the API implementation code by invoking:
4747

appengine/endpoints-frameworks-v2/backend/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,20 @@
9191
<hostname>${endpoints.project.id}.appspot.com</hostname>
9292
</configuration>
9393
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-war-plugin</artifactId>
97+
<version>2.6</version>
98+
<configuration>
99+
<webResources>
100+
<resource>
101+
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
102+
<filtering>true</filtering>
103+
<targetPath>WEB-INF</targetPath>
104+
</resource>
105+
</webResources>
106+
</configuration>
107+
</plugin>
94108
<plugin>
95109
<groupId>org.codehaus.mojo</groupId>
96110
<artifactId>versions-maven-plugin</artifactId>

0 commit comments

Comments
 (0)