2023-06-11 14:48:24 +02:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
|
|
}
|
|
|
|
|
2023-06-11 15:26:02 +02:00
|
|
|
archivesBaseName = 'mapper'
|
2023-09-08 21:23:55 +02:00
|
|
|
version = gitVersion().split('-').getAt(0).replace('dirty', '')
|
2023-06-11 14:48:24 +02:00
|
|
|
|
|
|
|
java {
|
2023-09-08 21:23:55 +02:00
|
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
2023-06-11 14:48:24 +02:00
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
|
|
|
}
|
|
|
|
|
2023-09-08 23:53:09 +02:00
|
|
|
javadoc {
|
|
|
|
options {
|
2024-01-20 18:23:57 +01:00
|
|
|
links 'https://docs.zaaarf.foo/lillero/'
|
2023-09-08 23:53:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-11 14:48:24 +02:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-06-11 15:26:02 +02:00
|
|
|
implementation 'ftbsc:lll:0.4.2'
|
|
|
|
implementation 'com.google.auto.service:auto-service-annotations:1.1.0'
|
|
|
|
annotationProcessor 'com.google.auto.service:auto-service:1.1.0'
|
2024-01-20 18:23:57 +01:00
|
|
|
}
|