mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 17:39:19 +01:00
31 lines
No EOL
645 B
Groovy
31 lines
No EOL
645 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'processor'
|
|
version = gitVersion().split('-').getAt(0).replace('dirty', '')
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
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'
|
|
implementation 'ftbsc:lll:0.4.1'
|
|
} |