lillero-mapper/build.gradle

24 lines
565 B
Groovy
Raw Normal View History

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', '')
java {
2023-09-08 21:23:55 +02:00
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
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'
2023-09-08 21:23:55 +02:00
}