79 lines
2.0 KiB
Groovy
Executable File
79 lines
2.0 KiB
Groovy
Executable File
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
|
id 'xyz.jpenilla.run-paper' version '2.2.0'
|
|
}
|
|
|
|
group = 'ru.redguy'
|
|
version = '1.0.0'
|
|
|
|
repositories {
|
|
maven {
|
|
name = 'redguy-repo'
|
|
url = 'https://rep.redguy.org/repo/maven-minecraft/'
|
|
}
|
|
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.4'
|
|
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'
|
|
|
|
shadowJar {
|
|
archiveClassifier.set('')
|
|
configurations = [project.configurations.implementation]
|
|
}
|
|
|
|
tasks {
|
|
runServer {
|
|
minecraftVersion('1.16.5')
|
|
|
|
// Download required plugins
|
|
downloadPlugins {
|
|
url('https://github.com/MilkBowl/Vault/releases/download/1.7.3/Vault.jar')
|
|
url('https://ci.codemc.io/job/filoghost/job/ChestCommands/lastSuccessfulBuild/artifact/ChestCommands-4.0.5.jar')
|
|
}
|
|
}
|
|
}
|
|
|
|
processResources {
|
|
def props = [version: version]
|
|
inputs.properties props
|
|
filteringCharset 'UTF-8'
|
|
filesMatching('plugin.yml') {
|
|
expand props
|
|
}
|
|
}
|
|
|
|
jar {
|
|
configurations.implementation.canBeResolved = true;
|
|
} |