mirror of
https://github.com/zaaarf/geb.git
synced 2024-11-13 01:59:21 +01:00
17 lines
299 B
Groovy
17 lines
299 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'geb'
|
|
version = versionDetails().lastTag
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|