diff options
author | zaaarf <me@zaaarf.foo> | 2024-01-24 17:55:10 +0100 |
---|---|---|
committer | zaaarf <me@zaaarf.foo> | 2024-01-24 17:59:00 +0100 |
commit | e50d61850b0b7bc0005259d343f0c3eb729966e2 (patch) | |
tree | 2134ac3f1c244a9dcce2315180e04294c8fe12cd /build.gradle |
feat: initial (broken) commit
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..47c7511 --- /dev/null +++ b/build.gradle @@ -0,0 +1,33 @@ +plugins { + id 'java-library' + id 'com.palantir.git-version' version '0.13.0' +} + +archivesBaseName = 'mixin' +version = gitVersion().split('-').getAt(0).replace('dirty', '') + +java { + sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8 + withSourcesJar() + withJavadocJar() +} + +javadoc { + options { + links 'https://docs.zaaarf.foo/lillero' + } +} + +repositories { + maven { url = 'https://maven.minecraftforge.net/' } + maven { url = 'https://maven.fantabos.co' } + mavenCentral() +} + +dependencies { + implementation 'org.apache.logging.log4j:log4j-api:2.17.1' + implementation 'org.apache.logging.log4j:log4j-core:2.17.1' + implementation 'org.ow2.asm:asm-commons:9.4' + implementation 'ftbsc:lll:0.5.0' + implementation 'org.spongepowered:mixin:0.8.3' +} |