summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 39a0e636..2cd61e48 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,8 +6,8 @@ subprojects {
6 apply plugin: 'java' 6 apply plugin: 'java'
7 apply plugin: 'maven-publish' 7 apply plugin: 'maven-publish'
8 8
9 sourceCompatibility = JavaVersion.VERSION_16 9 sourceCompatibility = JavaVersion.VERSION_17
10 targetCompatibility = JavaVersion.VERSION_16 10 targetCompatibility = JavaVersion.VERSION_17
11 11
12 repositories { 12 repositories {
13 mavenLocal() 13 mavenLocal()
@@ -40,7 +40,7 @@ subprojects {
40 tasks.withType(JavaCompile).configureEach { 40 tasks.withType(JavaCompile).configureEach {
41 it.options.encoding = "UTF-8" 41 it.options.encoding = "UTF-8"
42 42
43 it.options.release = 16 43 it.options.release = 17
44 } 44 }
45 45
46 publishing { 46 publishing {