forked from public-mirrors/Uniform
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
284 B
Groovy
14 lines
284 B
Groovy
5 months ago
|
plugins {
|
||
|
id 'java-library'
|
||
|
id 'maven-publish'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(path: ':common')
|
||
|
|
||
|
compileOnly 'org.spongepowered:spongeapi:11.0.0'
|
||
|
compileOnly 'org.projectlombok:lombok:1.18.32'
|
||
|
|
||
|
annotationProcessor 'org.projectlombok:lombok:1.18.32'
|
||
|
}
|