26 lines
594 B
Plaintext
26 lines
594 B
Plaintext
import be.simplenotes.Libs
|
|
|
|
plugins {
|
|
id("be.simplenotes.base")
|
|
kotlin("kapt")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":simplenotes-types"))
|
|
implementation(project(":simplenotes-config"))
|
|
|
|
implementation(Libs.mapstruct)
|
|
implementation(Libs.koinCore)
|
|
implementation(Libs.mariadbClient)
|
|
implementation(Libs.h2)
|
|
implementation(Libs.flywayCore)
|
|
implementation(Libs.hikariCP)
|
|
implementation(Libs.ktormCore)
|
|
implementation(Libs.ktormMysql)
|
|
|
|
kapt(Libs.mapstructProcessor)
|
|
|
|
testImplementation(Libs.junit)
|
|
testImplementation(Libs.assertJ)
|
|
}
|