2022-05-04 13:28:52 -05:00
|
|
|
val ktor_version: String by project
|
|
|
|
val kotlin_version: String by project
|
|
|
|
val logback_version: String by project
|
2022-07-04 18:44:10 -05:00
|
|
|
val ktorm_version: String by project
|
|
|
|
val postgresql_driver_version: String by project
|
2022-05-04 13:28:52 -05:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
application
|
|
|
|
kotlin("jvm") version "1.6.21"
|
|
|
|
id("org.jetbrains.kotlin.plugin.serialization") version "1.6.21"
|
|
|
|
}
|
|
|
|
|
|
|
|
group = "com.wyattjmiller"
|
|
|
|
version = "0.0.1"
|
|
|
|
application {
|
|
|
|
mainClass.set("io.ktor.server.netty.EngineMain")
|
|
|
|
|
|
|
|
val isDevelopment: Boolean = project.ext.has("development")
|
|
|
|
applicationDefaultJvmArgs = listOf("-Dio.ktor.development=$isDevelopment")
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("io.ktor:ktor-server-core-jvm:$ktor_version")
|
|
|
|
implementation("io.ktor:ktor-server-content-negotiation-jvm:$ktor_version")
|
|
|
|
implementation("io.ktor:ktor-serialization-kotlinx-json-jvm:$ktor_version")
|
|
|
|
implementation("io.ktor:ktor-server-netty-jvm:$ktor_version")
|
2022-07-04 18:44:10 -05:00
|
|
|
implementation("io.ktor:ktor-server-auth:$ktor_version")
|
|
|
|
implementation("io.ktor:ktor-server-auth-jwt:$ktor_version")
|
|
|
|
implementation("org.ktorm:ktorm-core:$ktorm_version")
|
|
|
|
implementation("org.ktorm:ktorm-support-postgresql:$ktorm_version")
|
|
|
|
implementation("org.postgresql:postgresql:$postgresql_driver_version")
|
2022-05-04 13:28:52 -05:00
|
|
|
implementation("ch.qos.logback:logback-classic:$logback_version")
|
2022-07-04 18:44:10 -05:00
|
|
|
implementation("org.mindrot:jbcrypt:0.4")
|
2022-05-04 13:28:52 -05:00
|
|
|
testImplementation("io.ktor:ktor-server-tests-jvm:$ktor_version")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
|
|
|
|
}
|