aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 9e868cb2eb023d4b3d0fbe46553d227707f0f9f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()
}