23 lines
574 B
Groovy
23 lines
574 B
Groovy
plugins {
|
|
id 'org.spongepowered.plugin' version '0.9.0'
|
|
}
|
|
|
|
group = 'ru.redguy'
|
|
version = '1.0'
|
|
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
|
|
dependencies {
|
|
compileOnly 'org.spongepowered:spongeapi:7.3.0'
|
|
annotationProcessor 'org.spongepowered:spongeapi:7.3.0'
|
|
compile "org.java-websocket:Java-WebSocket:1.5.1"
|
|
compile group: 'org.json', name: 'json', version: '20200518'
|
|
}
|
|
|
|
jar {
|
|
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
|
}
|
|
|
|
sponge.plugin.id = 'crossplattormresender_minecraft'
|