2023-06-11 14:48:24 +02:00
|
|
|
plugins {
|
2024-05-11 15:05:26 +02:00
|
|
|
id 'java-library'
|
|
|
|
id 'com.palantir.git-version' version '0.13.0'
|
2023-06-11 14:48:24 +02:00
|
|
|
}
|
|
|
|
|
2023-06-11 15:26:02 +02:00
|
|
|
archivesBaseName = 'mapper'
|
2024-05-11 15:05:26 +02:00
|
|
|
version = versionDetails().lastTag
|
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 {
|
2024-01-24 17:35:09 +01:00
|
|
|
implementation 'ftbsc:lll:0.5.0'
|
2023-06-11 15:26:02 +02:00
|
|
|
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
|
|
|
}
|