Skip to content

Commit

Permalink
Move a TODO and the "exposed-jdbc" dependency to the "postgresql" module
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Nov 24, 2024
1 parent d373943 commit 5cf8b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ plugins {

dependencies {
api(commonDependencies.exposed.core()) // TODO: use `implementation` when possible
// TODO: remove the Exposed JDBC dependency and the PostgresSQL dependency when there is no need to to generate SQLs with an Exposed transaction
runtimeOnly(commonDependencies.exposed.module("jdbc"))
api(commonDependencies.kotlinCommon.exposed())

with(commonDependencies.vertx) {
Expand Down
2 changes: 2 additions & 0 deletions postgresql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ dependencies {
with(commonDependencies.vertx) { implementation(platformStackDepchain()) } // needed
implementation(cpnProject(project, ":core"))

// TODO remove the Exposed JDBC dependency and the PostgresSQL dependency when there is no need to to generate SQLs with an Exposed transaction
runtimeOnly(commonDependencies.exposed.module("jdbc"))
runtimeOnly(commonDependencies.postgreSql())
implementation(commonDependencies.vertx.moduleWithoutVersion("pg-client"))
implementation(commonDependencies.kotlinCommon.core()) // for `Untested`
Expand Down

0 comments on commit 5cf8b81

Please sign in to comment.