Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Fix again the dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Nov 15, 2024
1 parent b49a7d7 commit c720b8e
Show file tree
Hide file tree
Showing 29 changed files with 30 additions and 30 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ This list is not intended to be all-encompassing - it will document major and br
changes with their rationale when appropriate. Given version `A.B.C.D`, breaking changes are to be expected in version number increments where changes in the `A` or `B` sections:

### v5.26.0.2
- **http4k-connect-*** - [Fix] Missing dev.forkhandles:parser4k dependency in http4k-connect-amazon-dynamodb
- **http4k-connect-*** - [Fix] Readd implementation dependencies as removed during refactor of build
- **http4k-connect-*** - [Fix again!] Missing dev.forkhandles:parser4k dependency in http4k-connect-amazon-dynamodb
- **http4k-connect-*** - [Fix again!] Readd implementation dependencies as removed during refactor of build

### v5.26.0.1
- **http4k-connect-*** - [Fix] Missing dev.forkhandles:parser4k dependency in http4k-connect-amazon-dynamodb
Expand Down
2 changes: 1 addition & 1 deletion ai/anthropic/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
dependencies {
api(project(":http4k-connect-ai-core"))

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-cloudnative:${rootProject.properties["http4k_version"]}")
testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion ai/azure/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
dependencies {
api(project(":http4k-connect-ai-core"))

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-cloudnative:${rootProject.properties["http4k_version"]}")
testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion ai/lmstudio/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

dependencies {
api(project(":http4k-connect-ai-core"))
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-cloudnative:${rootProject.properties["http4k_version"]}")
testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion ai/ollama/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

dependencies {
api(project(":http4k-connect-ai-core"))
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-cloudnative:${rootProject.properties["http4k_version"]}")
testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion ai/openai/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {

dependencies {
api(project(":http4k-connect-ai-core"))
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-cloudnative:${rootProject.properties["http4k_version"]}")
testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion amazon/apprunner/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/cloudwatchlogs/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/cognito/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
exclude("org.http4k", "http4k-format-moshi")
}

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")
testFixturesApi("org.bitbucket.b_c:jose4j:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/containercredentials/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi("io.mockk:mockk:_")
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")
api("org.http4k:http4k-format-core:${rootProject.properties["http4k_version"]}")

testFixturesApi("org.http4k:http4k-testing-chaos:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion amazon/dynamodb/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi("org.jetbrains.kotlin", "kotlin-reflect")
testFixturesApi("org.http4k:http4k-serverless-lambda:${rootProject.properties["http4k_version"]}")
Expand Down
2 changes: 1 addition & 1 deletion amazon/eventbridge/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
compileOnly("org.http4k:http4k-serverless-lambda:${rootProject.properties["http4k_version"]}")
compileOnly("joda-time:joda-time:_")

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/evidently/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/firehose/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/iamidentitycenter/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/instancemetadata/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
}
2 changes: 1 addition & 1 deletion amazon/kms/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi("org.bouncycastle:bcprov-jdk18on:_")
testFixturesApi(testFixtures(project(":http4k-connect-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/secretsmanager/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion amazon/sqs/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
}
2 changes: 1 addition & 1 deletion amazon/systemsmanager/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi(testFixtures(project(":http4k-connect-core")))
testFixturesApi(testFixtures(project(":http4k-connect-amazon-core")))
Expand Down
2 changes: 1 addition & 1 deletion github/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
testFixturesApi(testFixtures(project(":http4k-connect-core")))
Expand Down
2 changes: 1 addition & 1 deletion gitlab/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testApi("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}")
testFixturesApi(testFixtures(project(":http4k-connect-core")))
Expand Down
2 changes: 1 addition & 1 deletion google/analytics-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ plugins {
}

dependencies {
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")
}
2 changes: 1 addition & 1 deletion google/analytics-ga4/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

api("org.http4k:http4k-format-core:${rootProject.properties["http4k_version"]}")
}
2 changes: 1 addition & 1 deletion google/analytics-ua/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ plugins {

dependencies {
api(project(":http4k-connect-google-analytics-core"))
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")
}
2 changes: 1 addition & 1 deletion kafka/rest/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
}

api("org.apache.avro:avro:_")
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi("org.jetbrains.kotlin:kotlin-reflect")

Expand Down
2 changes: 1 addition & 1 deletion kafka/schemaregistry/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {

api("org.apache.avro:avro:_")

implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")

testFixturesApi("org.jetbrains.kotlin:kotlin-reflect")

Expand Down
2 changes: 1 addition & 1 deletion mattermost/client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {
api("org.http4k:http4k-format-moshi:${rootProject.properties["http4k_version"]}") {
exclude("org.jetbrains.kotlin", "kotlin-reflect")
}
implementation("se.ansman.kotshi:api:_")
api("se.ansman.kotshi:api:_")
}

0 comments on commit c720b8e

Please sign in to comment.