This is an automated email from the ASF dual-hosted git repository.
aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 0897f17 Limit fineract-client to Java 8 not 11 (FINERACT-1214)
0897f17 is described below
commit 0897f172eeb7e2125516c8cf4d2e443a50c93409
Author: Michael Vorburger <[email protected]>
AuthorDate: Mon Oct 19 23:45:05 2020 +0200
Limit fineract-client to Java 8 not 11 (FINERACT-1214)
---
fineract-client/build.gradle | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/fineract-client/build.gradle b/fineract-client/build.gradle
index a5a8ecc..9308314 100644
--- a/fineract-client/build.gradle
+++ b/fineract-client/build.gradle
@@ -74,6 +74,12 @@ sourceSets {
}
}
+java {
+ // keep this at Java 8, not 11; see
https://issues.apache.org/jira/browse/FINERACT-1214
+ sourceCompatibility = JavaVersion.VERSION_1_8
+ targetCompatibility = JavaVersion.VERSION_1_8
+}
+
compileJava {
source += sourceSets.generated.java
}