mirror of
https://github.com/zaaarf/lillero-mapper.git
synced 2024-11-09 23:39:19 +01:00
30 lines
601 B
Groovy
30 lines
601 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'mapper'
|
|
version = versionDetails().lastTag
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
javadoc {
|
|
options {
|
|
links 'https://docs.zaaarf.foo/lillero/'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'ftbsc:lll:0.5.0'
|
|
implementation 'com.google.auto.service:auto-service-annotations:1.1.0'
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.1.0'
|
|
}
|