JGUN/build.gradle

22 lines
485 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'
2019-05-10 08:31:34 +00:00
version '0.2.2'
2019-05-02 10:38:25 +00:00
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
implementation 'org.java-websocket:Java-WebSocket:1.4.0'
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.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'
}