geb-processor/build.gradle

31 lines
602 B
Groovy
Raw Permalink Normal View History

2023-08-22 11:13:23 +02:00
plugins {
id 'java'
id 'com.palantir.git-version' version '0.13.0'
}
2023-08-24 02:01:07 +02:00
archivesBaseName = 'processor'
2024-06-01 01:46:27 +02:00
version = versionDetails().lastTag
2023-08-22 11:13:23 +02:00
java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
javadoc {
options {
2024-01-20 18:19:44 +01:00
links 'https://docs.zaaarf.foo/geb/'
links 'https://square.github.io/javapoet/javadoc/javapoet/'
}
}
2023-08-22 11:13:23 +02:00
repositories {
mavenCentral()
2023-08-22 11:28:05 +02:00
maven { url 'https://maven.fantabos.co' }
2023-08-22 11:13:23 +02:00
}
dependencies {
2024-06-01 01:46:27 +02:00
implementation 'ftbsc:geb:0.3.0'
2023-08-22 11:13:23 +02:00
implementation 'com.squareup:javapoet:1.13.0'
2024-01-20 18:19:44 +01:00
}