This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
McGamerZone/proxy/build.gradle.kts

23 lines
641 B
Plaintext
Raw Permalink Normal View History

2021-02-19 20:11:08 +00:00
repositories {
mavenCentral()
maven(url = "https://papermc.io/repo/repository/maven-public/")
}
dependencies {
api(project(":serverdata"))
compileOnly("io.github.waterfallmc:waterfall-api:1.16-R0.4-SNAPSHOT")
}
tasks {
processResources {
val tokens = mapOf("version" to project.version)
from(sourceSets["main"].resources.srcDirs) {
filter<org.apache.tools.ant.filters.ReplaceTokens>("tokens" to tokens)
}
}
shadowJar {
archiveFileName.set("${project.rootProject.name}-${project.name}-v${project.version}.jar")
destinationDir = file("$rootDir/output")
}
}