plugins { id 'java' } group = 'ru.redguy' version = '1.0.0' repositories { mavenCentral() maven { name = 'papermc-repo' url = 'https://papermc.io/repo/repository/maven-public/' } maven { name = 'sonatype' url = 'https://oss.sonatype.org/content/groups/public/' } maven { url = 'https://repo.redguy.ru/repository/maven-public/' } } dependencies { compileOnly 'com.destroystokyo.paper:paper-api:1.12.2-R0.1-SNAPSHOT' compileOnly 'org.bukkit:craftbukkit:1.12.2-R0.1-20190527.155144-32' } 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 } } processResources { def props = [version: version] inputs.properties props filteringCharset 'UTF-8' filesMatching('plugin.yml') { expand props } } task copytorun(type: Copy) { delete file("$projectDir/Server/plugins/Extended*") from file("$projectDir/build/libs/ExtendedPistons-${version}.jar") into file("$projectDir/Server/plugins/") }