Skip to content

Commit

Permalink
tck: don’t depend on jackson databind
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelamo committed Feb 26, 2024
1 parent 52c7051 commit 3988d1d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion http-server-tck/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
exclude(group = "io.micronaut")
}
implementation(projects.runtime)
implementation(projects.jacksonDatabind)
implementation(libs.managed.jackson.annotations)
implementation(projects.inject)
implementation(projects.management)
api(projects.httpTck)
Expand Down
1 change: 0 additions & 1 deletion http-tck/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dependencies {
exclude(group = "io.micronaut")
}
implementation(projects.runtime)
implementation(projects.jacksonDatabind)
implementation(projects.inject)
api(projects.httpServer)
api(projects.httpClientCore)
Expand Down
1 change: 1 addition & 0 deletions test-suite-http-client-tck-jdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {

dependencies {
testImplementation(projects.httpServerNetty)
implementation(projects.jacksonDatabind)
testImplementation(projects.httpClientJdk)
testImplementation(projects.httpClientTck)
testImplementation(libs.junit.platform.engine)
Expand Down
1 change: 1 addition & 0 deletions test-suite-http-client-tck-netty/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {

dependencies {
testImplementation(projects.httpServerNetty)
implementation(projects.jacksonDatabind)
testImplementation(projects.httpClient)
testImplementation(projects.httpClientTck)
testImplementation(libs.junit.platform.engine)
Expand Down
1 change: 1 addition & 0 deletions test-suite-http-server-tck-jdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
}
dependencies {
testImplementation(projects.httpServerNetty)
implementation(projects.jacksonDatabind)
testImplementation(projects.httpClientJdk)
testImplementation(projects.httpServerTck)
testImplementation(libs.junit.platform.engine)
Expand Down
1 change: 1 addition & 0 deletions test-suite-http-server-tck-netty/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ micronautBuild {

dependencies {
implementation(projects.httpServerTck)
implementation(projects.jacksonDatabind)
testImplementation(projects.httpServerNetty)
testImplementation(projects.httpClient)
testImplementation(libs.junit.platform.engine)
Expand Down

0 comments on commit 3988d1d

Please sign in to comment.