feat(connector): add Project entity

This commit is contained in:
Anthony
2024-04-03 20:18:03 +02:00
parent 943023af8a
commit 4771d43788
2 changed files with 29 additions and 4 deletions

View File

@@ -5,10 +5,10 @@ plugins {
id("app.cash.sqldelight").version("2.0.1")
}
val coroutinesVersion = "1.7.3"
val ktorVersion = "2.3.7"
val coroutinesVersion = "1.8.0"
val ktorVersion = "2.3.9"
val sqlDelightVersion = "2.0.1"
val dateTimeVersion = "0.4.1"
val dateTimeVersion = "0.5.0"
kotlin {
jvm()
@@ -29,7 +29,7 @@ kotlin {
sqldelight {
databases {
create("ConnectorDatabase") {
create("Database") {
packageName.set("io.anthonyberg.connector.shared.database")
}
}