2022-04-11 05:06:13 +00:00
|
|
|
plugins {
|
|
|
|
id "java"
|
2022-04-12 21:37:10 +00:00
|
|
|
id "maven-publish"
|
2022-04-11 05:06:13 +00:00
|
|
|
id "net.minecrell.plugin-yml.bukkit" version "0.6.1-SNAPSHOT"
|
|
|
|
id 'com.github.johnrengelman.shadow' version '7.1.2'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "me.totalfreedom"
|
2022-04-12 21:37:10 +00:00
|
|
|
version = "4.8"
|
2022-04-12 02:51:50 +00:00
|
|
|
description = "BukkitTelnet"
|
2022-04-11 05:06:13 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url = uri("https://jitpack.io")
|
2022-04-12 02:51:50 +00:00
|
|
|
content {
|
|
|
|
includeGroup("com.github.MilkBowl")
|
|
|
|
}
|
2022-04-11 05:06:13 +00:00
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url = uri("https://papermc.io/repo/repository/maven-public/")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compileOnly "io.papermc.paper:paper-api:1.18.2-R0.1-SNAPSHOT"
|
2022-05-14 00:15:40 +00:00
|
|
|
annotationProcessor "org.projectlombok:lombok:1.18.24"
|
|
|
|
library "org.projectlombok:lombok:1.18.24"
|
2022-04-11 05:06:13 +00:00
|
|
|
library "org.json:json:20220320"
|
|
|
|
compileOnly("com.github.MilkBowl:VaultAPI:1.7") {
|
|
|
|
exclude group: "org.bukkit", module: "bukkit"
|
|
|
|
}
|
2022-04-12 02:51:50 +00:00
|
|
|
library "org.apache.logging.log4j:log4j-api:2.17.2"
|
|
|
|
library "org.apache.logging.log4j:log4j-core:2.17.2"
|
2022-04-11 05:06:13 +00:00
|
|
|
}
|
|
|
|
tasks {
|
|
|
|
jar {
|
|
|
|
dependsOn(shadowJar)
|
|
|
|
}
|
2022-04-12 21:37:10 +00:00
|
|
|
}
|
2022-04-11 05:06:13 +00:00
|
|
|
|
2022-04-12 21:37:10 +00:00
|
|
|
java {
|
|
|
|
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.encoding = "UTF-8"
|
2022-04-11 05:06:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bukkit {
|
|
|
|
name = "BukkitTelnet"
|
|
|
|
main = "me.totalfreedom.bukkittelnet.BukkitTelnet"
|
|
|
|
apiVersion = "1.18"
|
|
|
|
version = project.version
|
|
|
|
description = "Telnet console access plugin."
|
|
|
|
authors = ["bekvon", "Madgeek1450", "Prozza", "Taahh", "Telesphoreo"]
|
|
|
|
softDepend = ["Vault"]
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveBaseName.set("BukkitTelnet")
|
|
|
|
archiveVersion.set("")
|
|
|
|
archiveClassifier.set("")
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
2022-04-12 02:51:50 +00:00
|
|
|
def config = configurations.getByName("library")
|
2022-04-11 05:06:13 +00:00
|
|
|
publications {
|
|
|
|
maven(MavenPublication) {
|
2022-04-12 21:37:10 +00:00
|
|
|
groupId = 'me.totalfreedom'
|
|
|
|
artifactId = 'BukkitTelnet'
|
|
|
|
version = rootProject.version
|
2022-04-12 02:51:50 +00:00
|
|
|
pom.withXml {
|
2022-04-12 21:37:10 +00:00
|
|
|
def dependenciesNode = asNode().appendNode("dependencies")
|
2022-04-12 02:51:50 +00:00
|
|
|
config.getAllDependencies().each { dependency ->
|
2022-04-12 21:37:10 +00:00
|
|
|
dependenciesNode.appendNode("dependency").with {
|
|
|
|
it.appendNode("groupId", dependency.group)
|
|
|
|
it.appendNode("artifactId", dependency.name)
|
|
|
|
it.appendNode("version", dependency.version)
|
|
|
|
it.appendNode("scope", "provided")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
configurations.getByName("compileOnly").getAllDependencies().each { dependency ->
|
|
|
|
dependenciesNode.appendNode("dependency").with {
|
2022-04-12 02:51:50 +00:00
|
|
|
it.appendNode("groupId", dependency.group)
|
|
|
|
it.appendNode("artifactId", dependency.name)
|
|
|
|
it.appendNode("version", dependency.version)
|
|
|
|
it.appendNode("scope", "provided")
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 21:37:10 +00:00
|
|
|
artifacts = [shadowJar]
|
2022-04-12 02:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
maven {
|
2022-04-12 02:58:00 +00:00
|
|
|
url = uri("https://nexus.telesphoreo.me/repository/totalfreedom/")
|
2022-04-12 02:51:50 +00:00
|
|
|
credentials {
|
|
|
|
username = System.getenv("plexUser")
|
|
|
|
password = System.getenv("plexPassword")
|
|
|
|
}
|
2022-04-11 05:06:13 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-12 21:37:10 +00:00
|
|
|
}
|