Skip to content

Commit

Permalink
Change Hello World compiler to Java 7.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tswast committed Apr 4, 2016
1 parent 2e672da commit 08b779d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions managed_vms/helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<version>3.3</version>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 08b779d

Please sign in to comment.