aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
blob: 886c2d98f5edb0defd92d86c2d495d6d74a5a593 (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
plugins {
   id 'java'
   id 'com.palantir.git-version' version '0.13.0'
}

archivesBaseName = 'processor'
version = gitVersion().split('-').getAt(0).replace('dirty', '')

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

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

dependencies {
   implementation 'com.squareup:javapoet:1.13.0'
   implementation 'org.ow2.asm:asm-commons:9.5'
   implementation 'ftbsc:lll:0.4.1'
}