mirror of
https://github.com/ChronosX88/JGUN.git
synced 2024-11-12 18:21:00 +00:00
63667b50db
Bumped version to 0.2.4.
22 lines
485 B
Groovy
22 lines
485 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '4.0.4'
|
|
id 'java'
|
|
}
|
|
|
|
group 'io.github.chronosx88'
|
|
version '0.2.4'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.java-websocket:Java-WebSocket:1.4.0'
|
|
implementation 'net.sourceforge.streamsupport:android-retrofuture:1.7.0'
|
|
implementation group: 'org.json', name: 'json', version: '20180813'
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|