File tree 4 files changed +15
-4
lines changed
appengine/endpoints-frameworks-v2
backend/src/main/webapp/WEB-INF
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 15
15
limitations under the License.
16
16
-->
17
17
<appengine-web-app xmlns =" http://appengine.google.com/ns/1.0" >
18
- <application >${endpoints.project.id}</application >
19
- <version >1</version >
20
18
<threadsafe >true</threadsafe >
21
19
22
20
<basic-scaling >
Original file line number Diff line number Diff line change 99
99
</serviceClasses >
100
100
</configuration >
101
101
</plugin >
102
+ <plugin >
103
+ <groupId >org.apache.maven.plugins</groupId >
104
+ <artifactId >maven-war-plugin</artifactId >
105
+ <version >2.6</version >
106
+ <configuration >
107
+ <webResources >
108
+ <resource >
109
+ <directory >${basedir} /src/main/webapp/WEB-INF</directory >
110
+ <filtering >true</filtering >
111
+ <targetPath >WEB-INF</targetPath >
112
+ </resource >
113
+ </webResources >
114
+ </configuration >
115
+ </plugin >
102
116
<plugin >
103
117
<groupId >org.codehaus.mojo</groupId >
104
118
<artifactId >versions-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ public class EchoEndpointModule extends EndpointsModule {
25
25
public void configureServlets () {
26
26
bind (Echo .class ).toInstance (new Echo ());
27
27
configureEndpoints ("/_ah/api/*" , ImmutableList .of (Echo .class ));
28
+ super .configureServlets ();
28
29
}
29
30
}
30
31
// [END endpoints_module]
Original file line number Diff line number Diff line change 15
15
limitations under the License.
16
16
-->
17
17
<appengine-web-app xmlns =" http://appengine.google.com/ns/1.0" >
18
- <application >${endpoints.project.id}</application >
19
- <version >1</version >
20
18
<threadsafe >true</threadsafe >
21
19
22
20
<basic-scaling >
You can’t perform that action at this time.
0 commit comments