mirror of
https://github.com/ViaVersion/ViaAprilFools.git
synced 2025-01-07 19:07:35 +01:00
25 lines
548 B
Groovy
25 lines
548 B
Groovy
plugins {
|
|
id "vaf.platform-conventions"
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "SpigotMC"
|
|
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
|
|
}
|
|
maven {
|
|
name = "SpongePowered"
|
|
url "https://repo.spongepowered.org/repository/maven-public/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(annotationProcessor("org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT"))
|
|
}
|
|
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand("version": project.version, "description": project.description)
|
|
}
|
|
}
|