diff options
author | zaaarf <zaaarf@proton.me> | 2023-02-27 02:26:06 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-02-27 02:26:06 +0100 |
commit | 252272ac4251a6332847c0d09f4db065aec60aca (patch) | |
tree | 3ce93582f05f5612acd92ef542b054bc6e48f6bd /build.gradle | |
parent | 25869ddc92da8d2d2a7562f2b8dd8a62374054ff (diff) |
feat: MVP!
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 2306529..9f6a331 100644 --- a/build.gradle +++ b/build.gradle @@ -3,14 +3,17 @@ plugins { } group 'ftbsc.lll.processor' +sourceCompatibility = 1.8 +targetCompatibility = 1.8 repositories { mavenCentral() maven { url = 'https://maven.fantabos.co' } } + //TODO: figure out how to make annotationProcessor inherit its dependencies dependencies { implementation 'com.squareup:javapoet:1.13.0' - implementation 'ftbsc:lll:0.2.0' - implementation 'org.ow2.asm:asm-commons:9.4' //just for the javadocs + implementation 'ftbsc:lll:0.2.1' + implementation 'org.ow2.asm:asm-commons:9.4' }
\ No newline at end of file |