From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
java: make all java files compile to version 1.8 Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/modules/httpserver-jolokia-plugin/jolokia-agent/pom.xml b/modules/httpserver-jolokia-plugin/jolokia-agent/pom.xml --- a/modules/httpserver-jolokia-plugin/jolokia-agent/pom.xml +++ b/modules/httpserver-jolokia-plugin/jolokia-agent/pom.xml @@ -28,8 +28,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> <plugin> diff --git a/modules/java-base/pom.xml b/modules/java-base/pom.xml --- a/modules/java-base/pom.xml +++ b/modules/java-base/pom.xml @@ -31,8 +31,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> </plugins> diff --git a/modules/java-mgmt/cloudius/pom.xml b/modules/java-mgmt/cloudius/pom.xml --- a/modules/java-mgmt/cloudius/pom.xml +++ b/modules/java-mgmt/cloudius/pom.xml @@ -17,8 +17,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> </plugins> diff --git a/modules/java-tests/pom.xml b/modules/java-tests/pom.xml --- a/modules/java-tests/pom.xml +++ b/modules/java-tests/pom.xml @@ -79,8 +79,8 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> - <source>1.7</source> - <target>1.7</target> + <source>1.8</source> + <target>1.8</target> </configuration> </plugin> -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000004353ea05d420efee%40google.com.
