mirror of
https://github.com/zaaarf/geb.git
synced 2024-11-10 04:59:20 +01:00
17 lines
No EOL
327 B
Groovy
17 lines
No EOL
327 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.palantir.git-version' version '0.13.0'
|
|
}
|
|
|
|
archivesBaseName = 'geb'
|
|
version = gitVersion().split('-').getAt(0).replace('dirty', '')
|
|
|
|
java {
|
|
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
} |