Skip to content

Commit 08b779d

Browse files
committed
Change Hello World compiler to Java 7.
This sample is linked to from https://cloud.google.com/java/ as "App Engine flexible environment for Java 7" https://cloud.google.com/appengine/docs/flexible/java/hello-world. We should make sure it really is compatible with Java 7 by making sure we use that compiler instead of Java 8.
1 parent 2e672da commit 08b779d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

managed_vms/helloworld/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<version>3.3</version>
5050
<artifactId>maven-compiler-plugin</artifactId>
5151
<configuration>
52-
<source>1.8</source>
53-
<target>1.8</target>
52+
<source>1.7</source>
53+
<target>1.7</target>
5454
</configuration>
5555
</plugin>
5656
<plugin>

0 commit comments

Comments
 (0)