From 86666cf6243786b5a69490aa0017d43622e3f0e8 Mon Sep 17 00:00:00 2001 From: David Denton Date: Wed, 11 Dec 2024 18:57:09 +0000 Subject: [PATCH] -mupdate names --- .gitignore | 1 + http4k-core/graphql/build.gradle | 2 +- http4k-core/hexagonal-arrow/build.gradle | 3 ++- http4k-core/hexagonal/build.gradle | 3 ++- http4k-core/openapi/build.gradle | 2 +- http4k-core/typesafe-configuration/build.gradle | 2 +- 6 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 9f37af01..6f9815c6 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ build/ out/ intellij-settings/ **/node_modules/ +.DS_store \ No newline at end of file diff --git a/http4k-core/graphql/build.gradle b/http4k-core/graphql/build.gradle index 9479ae97..145341b8 100644 --- a/http4k-core/graphql/build.gradle +++ b/http4k-core/graphql/build.gradle @@ -25,7 +25,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}" implementation platform("org.http4k:http4k-bom:${http4kVersion}") implementation "org.http4k:http4k-core" - implementation "org.http4k:http4k-graphql" + implementation "org.http4k:http4k-api-graphql" implementation "com.expediagroup:graphql-kotlin-schema-generator:${graphql_kotlin_schema_generator_version}" testImplementation platform("org.junit:junit-bom:${junitVersion}") diff --git a/http4k-core/hexagonal-arrow/build.gradle b/http4k-core/hexagonal-arrow/build.gradle index d7744d9b..b8881080 100644 --- a/http4k-core/hexagonal-arrow/build.gradle +++ b/http4k-core/hexagonal-arrow/build.gradle @@ -40,7 +40,8 @@ dependencies { implementation "org.http4k:http4k-client-okhttp" implementation "org.http4k:http4k-format-jackson" implementation "org.http4k:http4k-server-undertow" - implementation "org.http4k:http4k-cloudnative" + implementation "org.http4k:http4k-config" + implementation "org.http4k:http4k-platform-core" implementation("io.arrow-kt:arrow-core:1.1.2") testImplementation "org.http4k:http4k-testing-chaos" diff --git a/http4k-core/hexagonal/build.gradle b/http4k-core/hexagonal/build.gradle index 24cdcd9d..7de330e2 100644 --- a/http4k-core/hexagonal/build.gradle +++ b/http4k-core/hexagonal/build.gradle @@ -40,7 +40,8 @@ dependencies { implementation "org.http4k:http4k-client-okhttp" implementation "org.http4k:http4k-format-jackson" implementation "org.http4k:http4k-server-undertow" - implementation "org.http4k:http4k-cloudnative" + implementation "org.http4k:http4k-config" + implementation "org.http4k:http4k-platform-core" implementation "dev.forkhandles:result4k" testImplementation "org.http4k:http4k-testing-chaos" diff --git a/http4k-core/openapi/build.gradle b/http4k-core/openapi/build.gradle index 774ea2c2..bf411da3 100644 --- a/http4k-core/openapi/build.gradle +++ b/http4k-core/openapi/build.gradle @@ -25,7 +25,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}" implementation platform("org.http4k:http4k-bom:${http4kVersion}") implementation "org.http4k:http4k-core" - implementation "org.http4k:http4k-contract" + implementation "org.http4k:http4k-api-openapi" implementation "org.http4k:http4k-format-jackson" testImplementation platform("org.junit:junit-bom:${junitVersion}") diff --git a/http4k-core/typesafe-configuration/build.gradle b/http4k-core/typesafe-configuration/build.gradle index 14f4b0b0..5019395f 100644 --- a/http4k-core/typesafe-configuration/build.gradle +++ b/http4k-core/typesafe-configuration/build.gradle @@ -25,7 +25,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}" implementation platform("org.http4k:http4k-bom:${http4kVersion}") implementation "org.http4k:http4k-core" - implementation "org.http4k:http4k-cloudnative" + implementation "org.http4k:http4k-config" testImplementation platform("org.junit:junit-bom:${junitVersion}") testImplementation "org.http4k:http4k-testing-hamkrest"