diff options
author | ftbsc <dev@fantabos.co> | 2023-02-28 21:58:12 +0100 |
---|---|---|
committer | ftbsc <dev@fantabos.co> | 2023-02-28 21:58:12 +0100 |
commit | 620d405404be70574f81c9432db4abe6887da859 (patch) | |
tree | 217f760b85a0aaf8ef1cbe4b22cc1ccb238f90b1 | |
parent | 928638cb7a41e9e098ff1c77c8e43355782dcbb9 (diff) |
fix: force java 8
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 299d24e..d76e1d2 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,8 @@ plugins { group 'ftbsc.lll.processor' +java.toolchain.languageVersion = JavaLanguageVersion.of(8) + repositories { mavenCentral() maven { url = 'https://maven.fantabos.co' } @@ -13,4 +15,4 @@ repositories { dependencies { implementation 'com.squareup:javapoet:1.13.0' implementation 'ftbsc:lll:0.2.2' -}
\ No newline at end of file +} |