JGUN/build.gradle

20 lines
351 B
Groovy
Raw Normal View History

2019-05-02 10:38:25 +00:00
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'
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'
}