mirror of
https://github.com/ViaVersion/ViaAprilFools.git
synced 2025-01-07 19:07:35 +01:00
22 lines
472 B
Groovy
22 lines
472 B
Groovy
plugins {
|
|
id "vaf.platform-conventions"
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "FabricMC"
|
|
url = "https://maven.fabricmc.net/"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(annotationProcessor("net.fabricmc:fabric-loader:0.11.3"))
|
|
compileOnly(annotationProcessor("org.apache.logging.log4j:log4j-api:2.17.1"))
|
|
}
|
|
|
|
processResources {
|
|
filesMatching("fabric.mod.json") {
|
|
expand("version": project.version, "description": project.description)
|
|
}
|
|
}
|