JGUN/build.gradle

21 lines
408 B
Groovy
Raw Normal View History

2019-05-02 10:38:25 +00:00
plugins {
id 'com.github.johnrengelman.shadow' version '4.0.4'
2019-05-02 10:38:25 +00:00
id 'java'
}
group 'io.github.chronosx88'
version '0.2.0'
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'
}