mirror of
https://github.com/jie65535/MiniOneBot.git
synced 2025-06-01 17:29:14 +08:00
26 lines
596 B
Groovy
26 lines
596 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'top.jie65535.minionebot'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/public/' }
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
implementation 'org.slf4j:slf4j-simple:2.0.5'
|
|
implementation 'io.javalin:javalin:5.3.2'
|
|
implementation 'org.java-websocket:Java-WebSocket:1.5.3'
|
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |