VIAaaS/build.gradle.kts

125 lines
4.2 KiB
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2020-08-15 23:02:35 +02:00
plugins {
`java-library`
2020-08-15 23:02:35 +02:00
application
2021-05-07 00:16:02 +02:00
kotlin("jvm") version "1.5.0"
2021-02-19 12:34:18 +01:00
id("maven-publish")
2021-05-07 00:16:02 +02:00
id("com.github.johnrengelman.shadow") version "7.0.0"
2021-03-30 16:32:47 +02:00
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 {
mainClass.set("com.viaversion.aas.VIAaaSKt")
mainClassName = mainClass.get()
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"
version = "0.4.0-SNAPSHOT+" + try {
gitVersion()
} catch (e: Exception) {
"unknown"
}
2020-08-15 23:02:35 +02:00
extra.set("archivesBaseName", "VIAaaS")
repositories {
mavenLocal()
2020-08-15 23:02:35 +02:00
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-05-06 00:59:26 +02:00
implementation("com.viaversion:viaversion:4.0.0-21w18a") { isTransitive = false }
2021-04-28 13:15:48 +02:00
implementation("com.viaversion:viabackwards:4.0.0-21w17a") { isTransitive = false }
2021-03-26 23:48:48 +01:00
implementation("com.github.ViaVersion.ViaRewind:viarewind-all:dev-SNAPSHOT") { isTransitive = false }
2021-04-16 23:35:04 +02:00
implementation("io.netty:netty-all:4.1.63.Final")
implementation("org.yaml:snakeyaml:1.28")
2021-03-30 16:32:47 +02:00
implementation("com.google.guava:guava:30.1.1-jre")
implementation("org.powernukkit.fastutil:fastutil-lite:8.1.1")
2021-03-30 16:32:47 +02:00
val log4jVer = "2.14.1"
implementation("org.apache.logging.log4j:log4j-core:$log4jVer")
implementation("org.apache.logging.log4j:log4j-iostreams:$log4jVer")
implementation("org.apache.logging.log4j:log4j-slf4j-impl:$log4jVer")
implementation("org.apache.logging.log4j:log4j-jul:$log4jVer")
implementation("org.slf4j:slf4j-api:1.7.30")
implementation("net.minecrell:terminalconsoleappender:1.2.0")
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")
2020-09-20 17:43:26 +02:00
2021-05-07 00:16:02 +02:00
val ktorVersion = "1.5.4"
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")
2021-03-30 16:32:47 +02:00
implementation("io.ipinfo:ipinfo-api:1.1")
implementation("com.auth0:java-jwt:3.15.0")
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"))
}
2021-03-05 22:56:11 +01:00
jar {
manifest.attributes("Multi-Release" to "true")
}
2020-11-06 19:57:56 +01:00
}
tasks.named<ProcessResources>("processResources") {
filesMatching("viaaas_info.json") {
2021-05-04 22:15:06 +02:00
filter<org.apache.tools.ant.filters.ReplaceTokens>(
"tokens" to mapOf(
"version" to project.property("version")
2021-05-04 22:15:06 +02: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()
}
}