VIAaaS/build.gradle.kts

112 lines
3.6 KiB
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2020-08-15 23:02:35 +02:00
plugins {
`java-library`
id("com.github.johnrengelman.shadow") version "6.1.0"
id("com.github.ben-manes.versions") version "0.36.0"
id("com.palantir.git-version") version "0.12.3"
2020-08-15 23:02:35 +02:00
application
2021-02-03 23:24:33 +01:00
kotlin("jvm") version "1.4.30"
2021-02-19 12:34:18 +01:00
id("maven-publish")
2020-08-15 23:02:35 +02:00
}
application {
2020-10-24 22:53:44 +02:00
mainClassName = "com.github.creeper123123321.viaaas.VIAaaSKt"
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=true")
2020-08-15 23:02:35 +02:00
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
withSourcesJar()
2020-08-15 23:02:35 +02:00
}
val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions.jvmTarget = "11"
val gitVersion: groovy.lang.Closure<String> by extra
2020-08-15 23:02:35 +02:00
group = "com.github.creeper123123321.viaaas"
2021-02-17 00:05:18 +01:00
version = "0.2.0-SNAPSHOT+" + try {
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/")
2020-08-15 23:02:35 +02:00
}
dependencies {
implementation("us.myles:viaversion:3.2.1") { isTransitive = false }
implementation("nl.matsv:viabackwards-all:3.2.0") { isTransitive = false }
implementation("de.gerrygames:viarewind-all:1.5.3") { isTransitive = false }
2021-01-17 14:45:41 +01:00
implementation("io.netty:netty-all:4.1.58.Final")
implementation("org.yaml:snakeyaml:1.26")
implementation("com.google.guava:guava:30.0-jre")
2021-02-04 00:56:41 +01:00
implementation("co.aikar:fastutil-lite:1.0")
implementation("org.apache.logging.log4j:log4j-core:2.13.3")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.13.3")
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("net.minecrell:terminalconsoleappender:1.2.0")
implementation("org.jline:jline-terminal-jansi:3.12.1")
2020-09-20 17:43:26 +02:00
2021-02-02 17:06:50 +01:00
val ktorVersion = "1.5.1"
2020-09-20 17:43:26 +02: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")
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")
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")
2020-08-15 23:02:35 +02:00
}
val run: JavaExec by tasks
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)
dependsOn(named("dependencyUpdates"))
}
2020-11-06 19:57:56 +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-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()
}
}