playground running

This commit is contained in:
Ryan
2021-04-11 09:52:26 -04:00
parent 070c084f61
commit 98d29f2d53
5 changed files with 73 additions and 1 deletions

View File

@ -5,6 +5,18 @@ plugins {
dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
implementation(projects.lib)
implementation(libs.bundles.ktor)
implementation(libs.bundles.logging)
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
application {
@Suppress("DEPRECATION")
mainClassName = "org.leafygreens.kompendium.playground.MainKt"
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=true") // TODO I don't think this is working 😢
}