File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
appengine/endpoints-frameworks-v2/backend Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ To deploy the sample API:
41
41
42
42
0 . Invoke the ` gcloud ` command to deploy the API configuration file:
43
43
44
- gcloud service-management deploy openapi.json
44
+ gcloud service-management deploy target/openapi-docs/ openapi.json
45
45
46
46
0 . Deploy the API implementation code by invoking:
47
47
Original file line number Diff line number Diff line change 91
91
<hostname >${endpoints.project.id} .appspot.com</hostname >
92
92
</configuration >
93
93
</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 >
94
108
<plugin >
95
109
<groupId >org.codehaus.mojo</groupId >
96
110
<artifactId >versions-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments