diff options
author | dev@ftbsc <dev@fantabos.co> | 2023-02-06 22:47:38 +0100 |
---|---|---|
committer | dev@ftbsc <dev@fantabos.co> | 2023-02-06 22:47:38 +0100 |
commit | aa54db5cefa47385484f4f837d6750f15fd2881a (patch) | |
tree | 37db2096309b496634647a58264471e914d8abd8 /build.gradle |
initial commit
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..067fcf4 --- /dev/null +++ b/build.gradle @@ -0,0 +1,16 @@ +//rootProject.name = 'lillero' + +// Apply the java-library plugin for API and implementation separation. +apply plugin: 'java-library' + + +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' +} |