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/24 16:25:36 UTC

[openwhisk-wskdebug] branch master updated: 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 master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git


The following commit(s) were added to refs/heads/master by this push:
     new 37f7a75  fix old java source and target version in java example
37f7a75 is described below

commit 37f7a75032e117f05e8c60ca257e7b0dca806416
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 7598320..eeea343 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>