lillero-processor/build.gradle

33 lines
650 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'com.palantir.git-version' version '0.13.0'
}
2023-03-02 00:54:36 +01:00
archivesBaseName = 'processor'
2024-05-11 15:08:46 +02:00
version = versionDetails().lastTag
java {
2023-09-08 20:38:10 +02:00
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
2023-02-28 21:58:12 +01:00
2023-09-08 23:55:01 +02:00
javadoc {
options {
2024-01-20 18:24:56 +01:00
links 'https://docs.zaaarf.foo/lillero/'
2023-09-08 23:55:01 +02:00
links 'https://square.github.io/javapoet/javadoc/javapoet/'
}
}
repositories {
mavenCentral()
maven { url = 'https://maven.fantabos.co' }
}
dependencies {
implementation 'com.squareup:javapoet:1.13.0'
2024-05-31 19:36:42 +02:00
implementation 'org.ow2.asm:asm-commons:9.7'
implementation 'ftbsc:lll:0.5.1'
implementation 'ftbsc.lll:mapper:0.4.1'
2024-01-20 18:24:56 +01:00
}