17 lines
323 B
Groovy
17 lines
323 B
Groovy
plugins {
|
|
id 'org.spongepowered.plugin' version '0.9.0'
|
|
}
|
|
|
|
group = pluginGroup
|
|
version = pluginVersion
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
|
|
dependencies {
|
|
compileOnly 'org.spongepowered:spongeapi:7.1.0'
|
|
annotationProcessor 'org.spongepowered:spongeapi:7.1.0'
|
|
}
|
|
|
|
sponge.plugin.id = pluginId
|