lillero-mapper/build.gradle

31 lines
601 B
Groovy
Raw Permalink Normal View History

plugins {
2024-05-11 15:05:26 +02:00
id 'java-library'
id 'com.palantir.git-version' version '0.13.0'
}
2023-06-11 15:26:02 +02:00
archivesBaseName = 'mapper'
2024-05-11 15:05:26 +02:00
version = versionDetails().lastTag
java {
2023-09-08 21:23:55 +02:00
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
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
}
}
repositories {
mavenCentral()
maven { url = 'https://maven.fantabos.co' }
}
dependencies {
implementation 'ftbsc:lll:0.5.1'
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
}