You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by al...@apache.org on 2022/05/23 21:45:26 UTC

[openwhisk-wskdebug] 01/01: fix old java source and target version in java example

This is an automated email from the ASF dual-hosted git repository.

alexkli pushed a commit to branch fix-java-compile-version
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git

commit da61863bdc986af0016345fbae45d4cdbbaf5fa7
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Mon May 23 14:45:12 2022 -0700

    fix old java source and target version in java example
---
 examples/java/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/examples/java/pom.xml b/examples/java/pom.xml
index 1c312ba..e16be84 100644
--- a/examples/java/pom.xml
+++ b/examples/java/pom.xml
@@ -11,6 +11,11 @@
 	<!-- Output to jar format -->
 	<packaging>jar</packaging>
 
+    <properties>
+         <maven.compiler.source>1.8</maven.compiler.source>
+         <maven.compiler.target>1.8</maven.compiler.target>
+    </properties>
+
 	<dependencies>
         <dependency>
           <groupId>com.google.code.gson</groupId>