70 lines
1.6 KiB
Groovy
70 lines
1.6 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id("xyz.jpenilla.run-paper") version "2.3.1"
|
|
}
|
|
|
|
group = 'de.winniepat'
|
|
version = '1.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://repo.papermc.io/repository/maven-public/' }
|
|
maven { url = 'https://jitpack.io' }
|
|
maven { url 'https://repo.lucko.me' }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly('io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT')
|
|
implementation 'org.xerial:sqlite-jdbc:3.42.0.0'
|
|
|
|
compileOnly('com.github.MilkBowl:VaultAPI:1.7') {
|
|
exclude group: 'org.bukkit', module: 'bukkit'
|
|
}
|
|
compileOnly 'net.luckperms:api:5.4'
|
|
}
|
|
|
|
tasks {
|
|
runServer {
|
|
minecraftVersion("1.21")
|
|
}
|
|
}
|
|
|
|
def targetJavaVersion = 21
|
|
java {
|
|
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
|
|
sourceCompatibility = javaVersion
|
|
targetCompatibility = javaVersion
|
|
if (JavaVersion.current() < javaVersion) {
|
|
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile).configureEach {
|
|
options.encoding = 'UTF-8'
|
|
|
|
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
|
|
options.release.set(targetJavaVersion)
|
|
}
|
|
}
|
|
|
|
processResources {
|
|
def props = [version: version]
|
|
inputs.properties props
|
|
filteringCharset 'UTF-8'
|
|
filesMatching('plugin.yml') {
|
|
expand props
|
|
}
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
include '**/*.yml'
|
|
}
|
|
}
|
|
|
|
tasks.register('copyPlugin', Copy) {
|
|
dependsOn build
|
|
from("$buildDir/libs")
|
|
include('*.jar')
|
|
into("$rootDir/srv/plugins")
|
|
}
|
|
|
|
build.finalizedBy(copyPlugin) |