diff options
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | spark-fabric/build.gradle | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index e45d802..88afbd6 100644 --- a/build.gradle +++ b/build.gradle @@ -26,7 +26,7 @@ subprojects { } processResources { - duplicatesStrategy = DuplicatesStrategy.EXCLUDE + duplicatesStrategy = DuplicatesStrategy.INCLUDE } repositories { diff --git a/spark-fabric/build.gradle b/spark-fabric/build.gradle index 9523978..e6647a4 100644 --- a/spark-fabric/build.gradle +++ b/spark-fabric/build.gradle @@ -6,9 +6,9 @@ plugins { } compileJava { - // override, compile targeting J11 + // override, compile targeting J16 options.compilerArgs.clear() - options.compilerArgs.addAll(['--release', '11']) + options.compilerArgs.addAll(['--release', '16']) } repositories { |