mirror of
https://github.com/hyperdefined/ToolStats.git
synced 2026-05-01 23:01:22 +00:00
Bumps io.papermc.paper:paper-api from 26.1.1.build.+ to 26.1.2.build.53-stable. --- updated-dependencies: - dependency-name: io.papermc.paper:paper-api dependency-version: 26.1.2.build.53-stable dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
963 B
Kotlin
46 lines
963 B
Kotlin
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*/
|
|
|
|
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
repositories {
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
maven("https://repo.rosewooddev.io/repository/public/")
|
|
mavenCentral()
|
|
maven("https://jitpack.io")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("io.papermc.paper:paper-api:26.1.2.build.+")
|
|
compileOnly("dev.rosewood:rosestacker:1.5.39")
|
|
compileOnly("com.github.hyperdefined:hyperlib:1.0.14:all")
|
|
}
|
|
|
|
group = "lol.hyper"
|
|
version = "2.0.4"
|
|
description = "ToolStats"
|
|
java.sourceCompatibility = JavaVersion.VERSION_25
|
|
|
|
tasks.withType<JavaCompile> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
tasks.withType<Javadoc> {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
val pluginVersion = version.toString()
|
|
|
|
tasks.processResources {
|
|
filteringCharset = "UTF-8"
|
|
|
|
val props = mapOf("version" to pluginVersion)
|
|
inputs.properties(props)
|
|
|
|
filesMatching("paper-plugin.yml") {
|
|
expand(props)
|
|
}
|
|
} |