[
https://issues.apache.org/jira/browse/OFBIZ-10757?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16772110#comment-16772110 ]
Taher Alkhateeb commented on OFBIZ-10757:
-----------------------------------------
Yeah I agree, some of the warnings are fixable while others need more work.
The patch to upgrade to JDK 11 is very simple and I list it below.
{code:java}
Index: build.gradle
===================================================================
--- build.gradle (revision 1853886)
+++ build.gradle (working copy)
@@ -67,8 +67,8 @@
)
}
-sourceCompatibility = '1.8'
-targetCompatibility = '1.8'
+sourceCompatibility = '11'
+targetCompatibility = '11'
// Java compile options, syntax gradlew -PXlint:none build
tasks.withType(JavaCompile) {
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)