17 lines
330 B
Kotlin
17 lines
330 B
Kotlin
/*
|
|
* Examples for Java
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
plugins {
|
|
id("elex-java")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("javax.websocket:javax.websocket-client-api:1.1")
|
|
implementation("org.eclipse.jetty.websocket:javax-websocket-client-impl:9.4.43.v20210629")
|
|
|
|
}
|