diff options
author | dev@ftbsc <dev@fantabos.co> | 2023-02-07 00:41:13 +0100 |
---|---|---|
committer | dev@ftbsc <dev@fantabos.co> | 2023-02-07 00:41:13 +0100 |
commit | 7e0923f8151e6a64e6793dfe8d6f57d1d477e857 (patch) | |
tree | df6709ab8582c7d0043d68ae923c3dcad82ff97f | |
parent | 3bf289bfb3a95c544805af7e883482988ae141a1 (diff) |
fix: use java 8
-rw-r--r-- | build.gradle | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 067fcf4..c52b0f4 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,11 @@ -//rootProject.name = 'lillero' - -// Apply the java-library plugin for API and implementation separation. apply plugin: 'java-library' +java.toolchain.languageVersion = JavaLanguageVersion.of(8) repositories { - // Use Maven Central for resolving dependencies. mavenCentral() } dependencies { - // implementation 'org.ow2.asm:asm-tree:9.4' implementation 'org.ow2.asm:asm-commons:9.4' - // implementation 'org.ow2.asm:asm-util:9.4' } |