lillero-processor/build.gradle

31 lines
645 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'
2023-09-08 20:38:10 +02:00
version = gitVersion().split('-').getAt(0).replace('dirty', '')
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 {
links 'https://lll.fantabos.co/javadoc/lillero/'
links 'https://square.github.io/javapoet/javadoc/javapoet/'
}
}
repositories {
mavenCentral()
maven { url = 'https://maven.fantabos.co' }
}
dependencies {
implementation 'com.squareup:javapoet:1.13.0'
implementation 'org.ow2.asm:asm-commons:9.5'
2023-04-13 10:51:57 +02:00
implementation 'ftbsc:lll:0.4.1'
2023-09-08 21:22:23 +02:00
}