mirror of
https://github.com/zaaarf/lillero-mixin.git
synced 2024-11-14 17:29:19 +01:00
33 lines
725 B
Groovy
33 lines
725 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'mixin'
|
|
version = versionDetails().lastTag
|
|
|
|
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.22.1'
|
|
implementation 'org.apache.logging.log4j:log4j-core:2.22.1'
|
|
implementation 'org.ow2.asm:asm-commons:9.6'
|
|
implementation 'ftbsc:lll:0.5.0'
|
|
implementation 'org.spongepowered:mixin:0.8.5'
|
|
}
|