geb/build.gradle

18 lines
299 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'com.palantir.git-version' version '0.13.0'
}
archivesBaseName = 'geb'
2024-06-01 01:42:08 +02:00
version = versionDetails().lastTag
java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
repositories {
mavenCentral()
2024-06-01 01:42:08 +02:00
}