summaryrefslogtreecommitdiff
path: root/build.gradle
blob: de0c181e31b1d1969ba6221a78a43b7dedb27f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
plugins {
    id 'java'
}

group 'ftbsc.lll.processor'

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

 //TODO: figure out how to make annotationProcessor inherit its dependencies
dependencies {
    implementation 'com.squareup:javapoet:1.13.0'
    implementation 'ftbsc:lll:0.2.1'
}