summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar modmuss502021-11-17 11:38:32 +0000
committerGravatar GitHub2021-11-17 11:38:32 +0000
commit0e8a076d39c0fa7101cd724e0e96516b7e01238b (patch)
tree5e319d15f43e18ea52e49c585001663b6577a575 /build.gradle
parentDon't drop none root method mappings that have args/local mappings. (#434) (diff)
downloadenigma-0e8a076d39c0fa7101cd724e0e96516b7e01238b.tar.gz
enigma-0e8a076d39c0fa7101cd724e0e96516b7e01238b.tar.xz
enigma-0e8a076d39c0fa7101cd724e0e96516b7e01238b.zip
Update deps & Java 17 (#435)
* Update deps * Java 17
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 {