30 lines
691 B
Groovy
30 lines
691 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'moe.sob'
|
|
version '1.3.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
|
|
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
|
|
maven { url "https://repo.opencollab.dev/main/" }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
|
|
compileOnly 'org.geysermc.geyser:api:2.2.0-SNAPSHOT'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'moe.sob.Main'
|
|
}
|
|
} |