summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 24865be5267eed0ea005806911f9ce1315944340 (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
plugins {
    id 'java-gradle-plugin'
}

group 'ftbsc.lll.processor'

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

dependencies {
    implementation 'com.squareup:javapoet:1.13.0'
    implementation 'ftbsc:lll:0.2.0'
    implementation 'org.ow2.asm:asm-commons:9.4' //just for the javadocs
}

gradlePlugin {
    plugins {
        create("lillero-processor") {
            id = "ftbsc.lll.processor"
            implementationClass = "ftbsc.lll.processor.Plugin"
        }
    }
}