2021-02-24 12:37:55 +01:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
2020-08-15 23:02:35 +02:00
|
|
|
plugins {
|
2021-02-24 12:37:55 +01:00
|
|
|
`java-library`
|
2020-08-15 23:02:35 +02:00
|
|
|
application
|
2021-03-31 00:16:46 +02:00
|
|
|
kotlin("jvm") version "1.4.32"
|
2021-02-19 12:34:18 +01:00
|
|
|
id("maven-publish")
|
2021-03-30 16:32:47 +02:00
|
|
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
|
|
|
id("com.github.ben-manes.versions") version "0.38.0"
|
|
|
|
id("com.palantir.git-version") version "0.12.3"
|
2020-08-15 23:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
2020-10-24 22:53:44 +02:00
|
|
|
mainClassName = "com.github.creeper123123321.viaaas.VIAaaSKt"
|
2021-02-22 14:07:15 +01:00
|
|
|
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=true")
|
2020-08-15 23:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
2021-02-24 12:37:55 +01:00
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(11))
|
|
|
|
}
|
|
|
|
withSourcesJar()
|
2020-08-15 23:02:35 +02:00
|
|
|
}
|
|
|
|
|
2021-02-24 12:37:55 +01:00
|
|
|
val compileKotlin: KotlinCompile by tasks
|
|
|
|
compileKotlin.kotlinOptions.jvmTarget = "11"
|
|
|
|
|
2020-11-20 16:38:30 +01:00
|
|
|
val gitVersion: groovy.lang.Closure<String> by extra
|
|
|
|
|
2020-08-15 23:02:35 +02:00
|
|
|
group = "com.github.creeper123123321.viaaas"
|
2021-03-27 00:22:53 +01:00
|
|
|
version = "0.2.1-SNAPSHOT+" + try {
|
2020-11-20 16:38:30 +01:00
|
|
|
gitVersion()
|
|
|
|
} catch (e: Exception) {
|
|
|
|
"unknown"
|
|
|
|
}
|
|
|
|
|
2020-08-15 23:02:35 +02:00
|
|
|
extra.set("archivesBaseName", "VIAaaS")
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots")
|
|
|
|
maven("https://repo.viaversion.com/")
|
2021-02-02 17:06:50 +01:00
|
|
|
maven("https://repo.aikar.co/content/groups/aikar/")
|
2021-03-26 23:48:48 +01:00
|
|
|
maven("https://jitpack.io")
|
2020-08-15 23:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-03-31 20:58:23 +02:00
|
|
|
implementation("us.myles:viaversion:3.3.0-21w13a") { isTransitive = false }
|
|
|
|
implementation("nl.matsv:viabackwards:3.3.0-21w13a") { isTransitive = false }
|
2021-03-26 23:48:48 +01:00
|
|
|
implementation("com.github.ViaVersion.ViaRewind:viarewind-all:dev-SNAPSHOT") { isTransitive = false }
|
2021-03-30 16:32:47 +02:00
|
|
|
implementation("io.netty:netty-all:4.1.61.Final")
|
2021-02-27 23:13:39 +01:00
|
|
|
implementation("org.yaml:snakeyaml:1.28")
|
2021-03-30 16:32:47 +02:00
|
|
|
implementation("com.google.guava:guava:30.1.1-jre")
|
2021-02-27 23:13:39 +01:00
|
|
|
implementation("org.powernukkit.fastutil:fastutil-lite:8.1.1")
|
2020-10-30 16:00:16 +01:00
|
|
|
|
2021-03-30 16:32:47 +02:00
|
|
|
val log4jVer = "2.14.1"
|
2021-02-27 23:13:39 +01:00
|
|
|
implementation("org.apache.logging.log4j:log4j-core:$log4jVer")
|
2021-03-13 16:32:08 +01:00
|
|
|
implementation("org.apache.logging.log4j:log4j-iostreams:$log4jVer")
|
2021-02-27 23:13:39 +01:00
|
|
|
implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVer")
|
2021-03-13 16:32:08 +01:00
|
|
|
implementation("org.apache.logging.log4j:log4j-jul:$log4jVer")
|
2020-10-30 16:00:16 +01:00
|
|
|
implementation("org.slf4j:slf4j-api:1.7.30")
|
|
|
|
implementation("net.minecrell:terminalconsoleappender:1.2.0")
|
2021-02-27 23:13:39 +01:00
|
|
|
implementation("org.jline:jline-terminal-jansi:3.19.0")
|
2021-03-10 00:44:52 +01:00
|
|
|
implementation("org.apache.commons:commons-compress:1.20")
|
2021-03-30 16:32:47 +02:00
|
|
|
implementation("org.tukaani:xz:1.9")
|
2020-09-20 17:43:26 +02:00
|
|
|
|
2021-02-27 23:13:39 +01:00
|
|
|
val ktorVersion = "1.5.2"
|
2020-10-30 16:00:16 +01:00
|
|
|
implementation(kotlin("stdlib-jdk8"))
|
2020-09-20 17:43:26 +02:00
|
|
|
implementation("io.ktor:ktor-network-tls-certificates:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
2021-02-10 14:27:06 +01:00
|
|
|
implementation("io.ktor:ktor-client-core:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
|
2020-10-25 05:13:18 +01:00
|
|
|
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
2021-02-10 14:27:06 +01:00
|
|
|
implementation("io.ktor:ktor-client-logging-jvm:$ktorVersion")
|
|
|
|
implementation("io.ktor:ktor-server-core:$ktorVersion")
|
2020-10-25 05:13:18 +01:00
|
|
|
implementation("io.ktor:ktor-client-gson:$ktorVersion")
|
2021-02-10 14:27:06 +01:00
|
|
|
implementation("io.ktor:ktor-server-host-common:$ktorVersion")
|
2020-09-20 17:43:26 +02:00
|
|
|
implementation("io.ktor:ktor-websockets:$ktorVersion")
|
2020-10-24 22:53:44 +02:00
|
|
|
testImplementation("io.ktor:ktor-server-test-host:$ktorVersion")
|
2021-03-30 16:32:47 +02:00
|
|
|
implementation("io.ipinfo:ipinfo-api:1.1")
|
2020-08-15 23:02:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
val run: JavaExec by tasks
|
2020-10-30 16:00:16 +01:00
|
|
|
run.standardInput = System.`in`
|
|
|
|
|
|
|
|
project.configurations.implementation.get().isCanBeResolved = true
|
|
|
|
tasks {
|
|
|
|
named<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar>("shadowJar") {
|
|
|
|
configurations = listOf(project.configurations.implementation.get())
|
|
|
|
transform(com.github.jengelman.gradle.plugins.shadow.transformers.Log4j2PluginsCacheFileTransformer::class.java)
|
|
|
|
}
|
|
|
|
build {
|
|
|
|
dependsOn(shadowJar)
|
2020-11-07 01:35:40 +01:00
|
|
|
dependsOn(named("dependencyUpdates"))
|
2020-10-30 16:00:16 +01:00
|
|
|
}
|
2021-03-05 22:56:11 +01:00
|
|
|
jar {
|
|
|
|
manifest.attributes("Multi-Release" to "true")
|
|
|
|
}
|
2020-11-06 19:57:56 +01:00
|
|
|
}
|
2020-11-20 16:38:30 +01:00
|
|
|
|
|
|
|
tasks.named<ProcessResources>("processResources") {
|
|
|
|
filesMatching("viaaas_info.json") {
|
|
|
|
filter<org.apache.tools.ant.filters.ReplaceTokens>("tokens" to mapOf(
|
|
|
|
"version" to project.property("version")
|
|
|
|
))
|
|
|
|
}
|
2020-12-02 00:00:08 +01:00
|
|
|
}
|
2020-12-13 20:59:03 +01:00
|
|
|
|
2021-02-19 12:34:18 +01:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
create<MavenPublication>("maven") {
|
|
|
|
artifact(tasks.getByName("shadowJar")) {
|
|
|
|
builtBy(tasks.getByName("shadowJar"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
// mavenLocal()
|
|
|
|
}
|
|
|
|
}
|