diff options
| author | 2021-11-17 11:38:32 +0000 | |
|---|---|---|
| committer | 2021-11-17 11:38:32 +0000 | |
| commit | 0e8a076d39c0fa7101cd724e0e96516b7e01238b (patch) | |
| tree | 5e319d15f43e18ea52e49c585001663b6577a575 /build.gradle | |
| parent | Don't drop none root method mappings that have args/local mappings. (#434) (diff) | |
| download | enigma-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.gradle | 6 |
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 { |