mirror of
https://github.com/ChronosX88/JGUN.git
synced 2024-11-08 08:21:00 +00:00
18 lines
278 B
Groovy
18 lines
278 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'
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
}
|