2019-05-02 10:38:25 +00:00
|
|
|
plugins {
|
2019-05-09 12:09:10 +00:00
|
|
|
id 'com.github.johnrengelman.shadow' version '4.0.4'
|
2019-05-02 10:38:25 +00:00
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.github.chronosx88'
|
2019-05-09 12:48:24 +00:00
|
|
|
version '0.2.1'
|
2019-05-02 10:38:25 +00:00
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'org.java-websocket:Java-WebSocket:1.4.0'
|
2019-05-02 11:31:40 +00:00
|
|
|
implementation group: 'org.json', name: 'json', version: '20180813'
|
|
|
|
|
2019-05-02 10:38:25 +00:00
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|