plugins { id 'java' } group = 'ru.redguy' version = '1.0.0' repositories { maven { name = 'redguy-repo' url = 'https://repo.redguy.ru/repository/maven-public/' } mavenCentral() maven { name = 'papermc-repo' url = 'https://papermc.io/repo/repository/maven-public/' } maven { name = 'sonatype' url = 'https://oss.sonatype.org/content/groups/public/' } } dependencies { compileOnly 'com.destroystokyo.paper:paper-api:1.16.5-R0.1-SNAPSHOT' compileOnly 'me.filoghost.chestcommands:chestcommands-api:4.0.3' compileOnly 'net.milkbowl.vault:VaultAPI:1.7' implementation 'org.jetbrains:annotations:23.0.0' } def targetJavaVersion = 8 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 } } compileJava.options.encoding = 'UTF-8' processResources { def props = [version: version] inputs.properties props filteringCharset 'UTF-8' filesMatching('plugin.yml') { expand props } } jar { configurations.implementation.canBeResolved = true; from { configurations.implementation.collect { it.isDirectory() ? it : zipTree(it) } } }