Juan Hernandez has uploaded a new change for review. Change subject: codegen: Update to Java 8 ......................................................................
codegen: Update to Java 8 This patch changes the POM of the code generator so that it requires Java 8 for compiling and running, as later changes will introduce code that will only work with Java 8. This doesn't affect the generated code which still requires Java 7. Change-Id: If56e9cb4d78817ed4b3ebc55520dd750e0f4aca3 Signed-off-by: Juan Hernandez <[email protected]> --- M ovirt-engine-sdk-java-codegen/pom.xml 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine-sdk-java refs/changes/55/37855/1 diff --git a/ovirt-engine-sdk-java-codegen/pom.xml b/ovirt-engine-sdk-java-codegen/pom.xml index f4341f3..ae5ecfd 100644 --- a/ovirt-engine-sdk-java-codegen/pom.xml +++ b/ovirt-engine-sdk-java-codegen/pom.xml @@ -75,8 +75,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> -- To view, visit http://gerrit.ovirt.org/37855 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If56e9cb4d78817ed4b3ebc55520dd750e0f4aca3 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine-sdk-java Gerrit-Branch: master Gerrit-Owner: Juan Hernandez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
