21 lines
411 B
Text
21 lines
411 B
Text
|
plugins {
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
group = "dev.elijahr"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(platform("org.junit:junit-bom:5.9.1"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
implementation("org.java-websocket:Java-WebSocket:1.5.6")
|
||
|
implementation("org.apache.commons:commons-text:1.12.0")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|