aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: ff0383fac22f668cf2d4ecabb56f450f0e7f68b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
    id 'java'
    id 'com.palantir.git-version' version '0.13.0'
}

archivesBaseName = 'processor'
version = versionDetails().lastTag

java {
    sourceCompatibility = targetCompatibility = JavaVersion.VERSION_1_8
    withSourcesJar()
    withJavadocJar()
}

javadoc {
    options {
        links 'https://docs.zaaarf.foo/geb/'
        links 'https://square.github.io/javapoet/javadoc/javapoet/'
    }
}

repositories {
    mavenCentral()
    maven { url 'https://maven.fantabos.co' }
}

dependencies {
    implementation 'ftbsc:geb:0.3.0'
    implementation 'com.squareup:javapoet:1.13.0'
}