15 lines
239 B
Groovy
15 lines
239 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'me.tofaa.entitylib'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":api"))
|
|
implementation('org.spigotmc:spigot-api:1.20.1-R0.1-SNAPSHOT')
|
|
}
|