/* * This file was generated by the Gradle 'init' task. */ plugins { `java-library` `maven-publish` } repositories { mavenLocal() maven { url = uri("https://repo.papermc.io/repository/maven-public/") } maven { url = uri("https://jitpack.io") } maven { url = uri("https://repo.rosewooddev.io/repository/public/") } maven { url = uri("https://repo.maven.apache.org/maven2/") } } dependencies { compileOnly("io.papermc.paper:paper-api:26.1.1.build.+") compileOnly("com.github.hyperdefined:hyperlib:1.0.10") compileOnly("dev.rosewood:rosestacker:1.5.39") } group = "lol.hyper" version = "2.0.3" description = "ToolStats" java.sourceCompatibility = JavaVersion.VERSION_25 publishing { publications.create("maven") { from(components["java"]) } } tasks.withType() { options.encoding = "UTF-8" } tasks.withType() { options.encoding = "UTF-8" }