This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
2022-11-08 19:58:55 +03:00

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'