Exposed
This commit is contained in:
@@ -11,19 +11,31 @@ repositories {
|
||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/ktor/eap") }
|
||||
}
|
||||
|
||||
val ktorVersion = "1.6.7"
|
||||
dependencies {
|
||||
// Ktor
|
||||
val ktorVersion: String by project
|
||||
implementation("io.ktor:ktor-server-netty:$ktorVersion")
|
||||
implementation("io.ktor:ktor-client-cio:$ktorVersion")
|
||||
|
||||
// Trixnity
|
||||
implementation("net.folivo:trixnity-appservice:1.1.6")
|
||||
implementation("net.folivo:trixnity-appservice:1.1.8")
|
||||
|
||||
// Exposed
|
||||
val exposedVersion: String by project
|
||||
dependencies {
|
||||
implementation("org.jetbrains.exposed:exposed-core:$exposedVersion")
|
||||
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
|
||||
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
|
||||
}
|
||||
|
||||
// H2 database
|
||||
implementation("com.h2database:h2:2.1.210")
|
||||
|
||||
// Logger
|
||||
implementation("io.github.microutils:kotlin-logging-jvm:2.1.21")
|
||||
implementation("ch.qos.logback:logback-classic:1.2.10")
|
||||
|
||||
// JUnit
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:1.6.10")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user