2024-07-21 13:24:06 +02:00
|
|
|
plugins {
|
|
|
|
id "vaf.platform-conventions"
|
|
|
|
}
|
|
|
|
|
2024-07-21 15:26:53 +02:00
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
name = "SpigotMC"
|
2024-09-05 01:15:32 +02:00
|
|
|
url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
|
2024-07-21 15:26:53 +02:00
|
|
|
}
|
|
|
|
maven {
|
|
|
|
name = "SpongePowered"
|
2024-09-05 01:15:32 +02:00
|
|
|
url = "https://repo.spongepowered.org/repository/maven-public/"
|
2024-07-21 15:26:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-21 13:24:06 +02:00
|
|
|
dependencies {
|
|
|
|
compileOnly(annotationProcessor("org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT"))
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
filesMatching("plugin.yml") {
|
|
|
|
expand("version": project.version, "description": project.description)
|
|
|
|
}
|
|
|
|
}
|