diff options
author | zaaarf <zaaarf@proton.me> | 2023-02-26 20:16:48 +0100 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-02-26 20:16:48 +0100 |
commit | 96b2bc553664892d476e0ca35a919eb20c7d1cb2 (patch) | |
tree | bbfaf86da6af6bbdc47fa5b8a27d0395e3631c13 /build.gradle | |
parent | eca2d1f312acd22a3515a377663686b23d9e234b (diff) |
chore: added proper documentation, cleaned up build.gradle, added exceptions
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/build.gradle b/build.gradle index 7a27215..24865be 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,8 @@ -import org.gradle.internal.jvm.Jvm - plugins { id 'java-gradle-plugin' } group 'ftbsc.lll.processor' -version '1.0-SNAPSHOT' repositories { mavenCentral() @@ -13,10 +10,9 @@ repositories { } dependencies { - implementation files(Jvm.current().toolsJar) implementation 'com.squareup:javapoet:1.13.0' implementation 'ftbsc:lll:0.2.0' - implementation 'org.ow2.asm:asm-commons:9.4' + implementation 'org.ow2.asm:asm-commons:9.4' //just for the javadocs } gradlePlugin { |