2023-03-28 19:24:11 +08:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-15 21:12:07 +08:00
|
|
|
group 'moe.sob'
|
|
|
|
|
version '1.2.0'
|
2023-03-28 19:24:11 +08:00
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
|
|
|
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
|
2023-11-12 13:46:51 +08:00
|
|
|
maven { url "https://repo.opencollab.dev/main/" }
|
2023-03-28 19:24:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
|
2023-11-12 13:46:51 +08:00
|
|
|
compileOnly 'org.geysermc.geyser:api:2.2.0-SNAPSHOT'
|
2023-03-28 19:24:11 +08:00
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
test {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
jar {
|
|
|
|
|
manifest {
|
2025-10-15 21:12:07 +08:00
|
|
|
attributes 'Main-Class': 'moe.sob.Main'
|
2023-03-28 19:24:11 +08:00
|
|
|
}
|
|
|
|
|
}
|