mirror of
https://github.com/ViaVersion/VIAaaS.git
synced 2024-11-04 09:30:00 +01:00
33 lines
739 B
Plaintext
33 lines
739 B
Plaintext
|
plugins {
|
||
|
application
|
||
|
kotlin("jvm") version "1.3.72"
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
mainClassName = "com.github.creeper123123321.viaaas.ViaaaSKt"
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
group = "com.github.creeper123123321.viaaas"
|
||
|
version = "0.0.1-SNAPSHOT"
|
||
|
extra.set("archivesBaseName", "VIAaaS")
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven("https://oss.sonatype.org/content/repositories/snapshots")
|
||
|
maven("https://repo.viaversion.com/")
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("us.myles:viaversion:3.1.0")
|
||
|
implementation("io.netty:netty-all:4.1.51.Final")
|
||
|
implementation(kotlin("stdlib-jdk8"))
|
||
|
}
|
||
|
|
||
|
val run: JavaExec by tasks
|
||
|
run.standardInput = System.`in`
|