19 lines
342 B
Groovy
19 lines
342 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.microsoft.aspnetcore'
|
|
version '0.1.0'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation group: 'junit', name: 'junit', version: '4.12'
|
|
implementation "org.java-websocket:Java-WebSocket:1.3.8"
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
}
|