geb/build.gradle

17 lines
327 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'com.palantir.git-version' version '0.13.0'
}
archivesBaseName = 'geb'
2023-09-09 00:23:36 +02:00
version = gitVersion().split('-').getAt(0).replace('dirty', '')
java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
repositories {
mavenCentral()
2023-09-09 00:23:36 +02:00
}