2022-05-13 07:17:55 +00:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
2022-05-13 13:20:42 +00:00
|
|
|
jar{
|
|
|
|
destinationDirectory = file("$rootDir/minecraft-server-volume/plugins/")
|
|
|
|
}
|
|
|
|
|
2022-05-13 07:17:55 +00:00
|
|
|
group 'spigot.gradle.project'
|
|
|
|
version '1.0.0'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-05-13 18:25:21 +00:00
|
|
|
// testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
|
|
// testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
2022-05-13 07:17:55 +00:00
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.18.2-R0.1-SNAPSHOT'
|
2022-05-13 13:20:42 +00:00
|
|
|
}
|