Skip to content

Commit

Permalink
Add a "sql-dsl" module
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Nov 19, 2024
1 parent cecd5be commit d0e1f3e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
rootProject.name = "exposed-vertx-sql-client"

include("core")
include("sql-dsl")
include("sql-dsl-with-mapper")
include("postgresql")
include("integrated")
Expand Down
10 changes: 10 additions & 0 deletions sql-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import com.huanshankeji.cpnProject

plugins {
`lib-conventions`
}

dependencies {
with(commonDependencies.vertx) { implementation(platformStackDepchain()) } // needed
implementation(cpnProject(project, ":core"))
}

0 comments on commit d0e1f3e

Please sign in to comment.