plugins { id 'java' id 'com.github.johnrengelman.shadow' version '7.1.2' } group = 'mc.unraveled.reforged' version = '1.0.0' repositories { mavenCentral() maven { name = 'papermc-repo' url = 'https://repo.papermc.io/repository/maven-public/' } maven { name = 'sonatype' url = 'https://oss.sonatype.org/content/groups/public/' } maven { name = 'jitpack' url = 'https://jitpack.io' } } dependencies { implementation 'org.apache.commons:commons-lang3:3.12.0' implementation 'com.github.Milkbowl:VaultAPI:1.7.1' implementation 'com.google.code.gson:gson:2.8.7' implementation 'org.jetbrains:annotations:22.0.0' shadow 'io.projectreactor:reactor-core:3.4.10' compileOnly 'io.papermc.paper:paper-api:1.19.3-R0.1-SNAPSHOT' } shadowJar { relocate("reactor", "mc.unraveled.reforged.rs") } def targetJavaVersion = 17 java { def javaVersion = JavaVersion.toVersion(targetJavaVersion) sourceCompatibility = javaVersion targetCompatibility = javaVersion if (JavaVersion.current() < javaVersion) { toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion) } } tasks.withType(JavaCompile).configureEach { if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) { options.release = targetJavaVersion } } processResources { def props = [version: version] inputs.properties props filteringCharset 'UTF-8' filesMatching('plugin.yml') { expand props } }