mirror of
https://github.com/ChronosX88/JGUN.git
synced 2024-11-09 16:51:02 +00:00
20 lines
351 B
Groovy
20 lines
351 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'io.github.chronosx88'
|
|
version '0.1.0'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.java-websocket:Java-WebSocket:1.4.0'
|
|
implementation group: 'org.json', name: 'json', version: '20180813'
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|