Skip to content

Commit

Permalink
refactor(:test): add log4j2 dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zero88 committed Aug 5, 2024
1 parent 5ec3749 commit de69af8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 2 additions & 1 deletion micro/circuit-breaker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ dependencies {
api(projects.core)
api(libs.vertxCircuitBreaker)

testImplementation(libs.junitVertx)
testImplementation(testFixtures(projects.core))
testImplementation(libs.junitVertx)
testImplementation(libs.log4j2Core)
}
5 changes: 3 additions & 2 deletions micro/discovery/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
codegen {
vertx {
version.set(libs.vertxCore.get().version)
sources.addAll(arrayOf(SourceSetName.MAIN))
sources.addAll(arrayOf(SourceSetName.MAIN, SourceSetName.TEST))
}
}

Expand All @@ -20,7 +20,8 @@ dependencies {
api(project(":http:client"))
api(libs.vertxServiceDiscovery)

testImplementation(libs.junitVertx)
testImplementation(testFixtures(projects.core))
testImplementation(libs.junitVertx)
testImplementation(libs.log4j2Core)
}

5 changes: 3 additions & 2 deletions sql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ dependencies {
compileOnly(libs.mysqlVertx)
compileOnly(libs.mssqlVertx)

testImplementation(testFixtures(projects.core))
testImplementation(testFixtures(libs.jooqx))
testImplementation(libs.junit5Vertx)
testImplementation(libs.jdbcVertx)
testImplementation(libs.db2Vertx)
Expand All @@ -27,11 +29,10 @@ dependencies {
testImplementation(libs.mssqlVertx)
testImplementation(libs.h2Jdbc)
testImplementation(libs.hikariCP)
testImplementation(testFixtures(projects.core))
testImplementation(testFixtures(libs.jooqx))
testImplementation(libs.junit5Container)
testImplementation(libs.postgresContainer)
testImplementation(libs.jooqMeta)
testImplementation(libs.log4j2Core)

jooqGenerator(libs.h2Jdbc)
jooqGenerator(libs.postgresJdbc)
Expand Down
3 changes: 2 additions & 1 deletion storage/json/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
dependencies {
api(projects.core)

testImplementation(libs.junit5Vertx)
testImplementation(testFixtures(projects.core))
testImplementation(libs.junit5Vertx)
testImplementation(libs.log4j2Core)
}

0 comments on commit de69af8

Please sign in to comment.