From fd8cdcb212b6d65af5add587a8d5eec4abb49198 Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Fri, 17 Apr 2026 14:20:33 +0200 Subject: [PATCH 1/8] Update agent-commons.md Small troubleshooting addition about Oracle datatypes --- .../docs/marketplace/genai/reference-guide/agent-commons.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/marketplace/genai/reference-guide/agent-commons.md b/content/en/docs/marketplace/genai/reference-guide/agent-commons.md index da739345c69..a393c41f268 100644 --- a/content/en/docs/marketplace/genai/reference-guide/agent-commons.md +++ b/content/en/docs/marketplace/genai/reference-guide/agent-commons.md @@ -250,3 +250,7 @@ If you encounter an error stating that an attribute or a reference is required a ### Conflicted Lib Error After Module Import If you encounter an error caused by conflicting Java libraries, such as `java.lang.NoSuchMethodError: 'com.fasterxml.jackson.annotation.OptBoolean com.fasterxml.jackson.annotation.JsonProperty.isRequired()'`, try synchronizing all dependencies (**App** > **Synchronize dependencies**) and then restart your application. + + +### Oracle-specifc +Depending on the database used, Mendix maps unlimited string values (e.g. User prompt and System prompt attributes) to data types which might not support string comparisons (e.g. in a rule). This can lead to errors. To fix them, you can edit the attribute types inside of the domain model and set a string length. From 93b850993fed72a72761cd5b4df78f340accbc30 Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Tue, 2 Jun 2026 18:43:27 +0200 Subject: [PATCH 2/8] Add troubleshooting for missing Jackson Core dependency Added a troubleshooting section for missing Jackson Core dependency and provided resolution steps. --- .../genai/reference-guide/genai-commons.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/en/docs/marketplace/genai/reference-guide/genai-commons.md b/content/en/docs/marketplace/genai/reference-guide/genai-commons.md index d012caf9164..665efa579b6 100644 --- a/content/en/docs/marketplace/genai/reference-guide/genai-commons.md +++ b/content/en/docs/marketplace/genai/reference-guide/genai-commons.md @@ -1020,6 +1020,17 @@ This microflow creates a new [MetadataCollection](#metadatacollection-entity) an This section lists possible solutions to known issues. +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + + ### Outdated JDK Version Causing Errors while Calling a REST API {#outdated-jdk-version} The Java Development Kit (JDK) is a framework needed by Mendix Studio Pro to deploy and run applications. For more information, see [Studio Pro System Requirements](/refguide/system-requirements/). Usually, the correct JDK version is installed during the installation of Studio Pro, but in some cases, it may be outdated. An outdated version can cause exceptions when calling REST-based services with large data volumes, like for example embeddings operations or chat completions with vision. From af00e918541581e56fb4d7c0b8c6147756815e96 Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:34:14 +0200 Subject: [PATCH 3/8] Document missing Jackson Core dependency issue Added information about missing Jackson Core dependency and resolution steps. --- .../genai/reference-guide/mcp-modules/mcp-client.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md index ab0d38606f0..f1cbdb1a30e 100644 --- a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md +++ b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md @@ -94,3 +94,15 @@ There are several possible reasons why the client cannot connect to your server. * The [GenAI Showcase App](https://marketplace.mendix.com/link/component/220475) provides an example on how to expose microflows as tools via the MCP Server module. * The official [MCP docs](https://modelcontextprotocol.io/introduction) * The [MCP Java SDK GitHub Repository](https://github.com/modelcontextprotocol/java-sdk) + + +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + From b53355806c504b6626abdf3187120e2438f9c87b Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:34:40 +0200 Subject: [PATCH 4/8] Document missing Jackson Core dependency issue Added information about missing Jackson Core dependency and resolution steps. --- .../genai/reference-guide/mcp-modules/mcp-server.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md index 76e639f347a..c89fb731db0 100644 --- a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md +++ b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md @@ -134,3 +134,14 @@ If you encounter an error caused by conflicting Java libraries, such as `java.la * The official [MCP docs](https://modelcontextprotocol.io/introduction) * The [MCP Java SDK GitHub Repository](https://github.com/modelcontextprotocol/java-sdk) * A blog post on [How to use MCP to bring Mendix Business Logic into Claude for Desktop](https://www.mendix.com/blog/how-to-use-mcp-to-bring-mendix-business-logic-into-claude-for-desktop/) + +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + From b1a7576ed9a44c0c541222a58f7917e2df5b6c02 Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:36:29 +0200 Subject: [PATCH 5/8] Document Jackson Core dependency issue and fix Added section on missing Jackson Core dependency and its resolution. --- .../reference-guide/external-platforms/openai.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md b/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md index f3bb72e9da8..d25627d2722 100644 --- a/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md +++ b/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md @@ -319,6 +319,18 @@ To check your JDK version and update it if necessary, follow these steps: 2. You may also need to update Gradle. To do this, go to **Edit** > **Preferences** > **Deployment** > **Gradle directory**. Click **Browse** and select the appropriate Gradle version from the Mendix folder. For Mendix 10.10 and above, use Gradle 8.5. For Mendix 10 versions below 10.10, use Gradle 7.6.3. Then save your settings by clicking **OK**. 3. Rerun the project. + +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + + ### Chat Completions with Vision and JSON Mode (Microsoft Foundry) Microsoft Foundry does not support the use of JSON mode and function calling in combination with image (vision) input and will return a `400 - model error`. Make sure the optional input parameters `ResponseFormat` and `ToolCollection` are set to `empty` for all chat completion operations if you want to use vision with Microsoft Foundry. From 7ecf2585b6688786b87f1ad894df51d13b9dd119 Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:37:05 +0200 Subject: [PATCH 6/8] Update Mx GenAI Connector documentation with troubleshooting Added troubleshooting section for missing Jackson Core dependency and Gradle updates. --- .../genai/mendix-cloud-genai/Mx GenAI Connector.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md b/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md index dbf11772bc0..5496511bcdc 100644 --- a/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md +++ b/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md @@ -307,6 +307,19 @@ To check your JDK version and update it if necessary, follow these steps: 2. You may also need to update Gradle. To do this, go to **Edit** > **Preferences** > **Deployment** > **Gradle directory**. Click **Browse** and select the appropriate Gradle version from the Mendix folder. For Mendix 10.10 and above, use Gradle 8.5. For Mendix 10 versions below 10.10, use Gradle 7.6.3. Then save your settings by clicking **OK**. 3. Rerun the project. + +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + + + ### Migrating From Add-on Module to App Module Since the module has been changed with version 3.0.0 from an add-on to an app module, updating it via the marketplace will require a migration to ensure it works properly with your application. From 83885814143e276b15169d75cf34d11a6d11833b Mon Sep 17 00:00:00 2001 From: linaaaf <90840263+linaaaf@users.noreply.github.com> Date: Wed, 3 Jun 2026 13:37:48 +0200 Subject: [PATCH 7/8] Document missing Jackson Core dependency issue Added information about missing Jackson Core dependency and its resolution. --- .../modules/aws/amazon-bedrock.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md index d86ab035a9d..1f801004a7e 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md @@ -882,3 +882,15 @@ If you encounter an error stating that an attribute or a reference is required a ### Conflicted Lib Error After Module Import If you encounter an error caused by conflicting Java libraries, such as `java.lang.NoSuchMethodError: 'com.fasterxml.jackson.annotation.OptBoolean com.fasterxml.jackson.annotation.JsonProperty.isRequired()'`, try synchronizing all dependencies (**App** > **Synchronize dependencies**) and then restart your application. + + +### Missing Jackson Core Dependency + +This applies to cases where your app fails to compile with the following error: + +`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` + +The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. + +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. + From 6dcd1e2b19da2e8dde087bfde527c62ff1042eee Mon Sep 17 00:00:00 2001 From: Dana Breseman Date: Wed, 3 Jun 2026 14:21:42 +0200 Subject: [PATCH 8/8] Language edit --- .../genai/mendix-cloud-genai/Mx GenAI Connector.md | 10 +++------- .../marketplace/genai/reference-guide/agent-commons.md | 4 ++-- .../genai/reference-guide/external-platforms/openai.md | 9 +++------ .../marketplace/genai/reference-guide/genai-commons.md | 9 +++------ .../genai/reference-guide/mcp-modules/mcp-client.md | 9 +++------ .../genai/reference-guide/mcp-modules/mcp-server.md | 9 +++------ .../modules/aws/amazon-bedrock.md | 9 +++------ 7 files changed, 20 insertions(+), 39 deletions(-) diff --git a/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md b/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md index 5496511bcdc..d5d24a2064a 100644 --- a/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md +++ b/content/en/docs/marketplace/genai/mendix-cloud-genai/Mx GenAI Connector.md @@ -310,15 +310,11 @@ To check your JDK version and update it if necessary, follow these steps: ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: - -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes. ### Migrating From Add-on Module to App Module diff --git a/content/en/docs/marketplace/genai/reference-guide/agent-commons.md b/content/en/docs/marketplace/genai/reference-guide/agent-commons.md index 2858ef6cf69..f7428f3b127 100644 --- a/content/en/docs/marketplace/genai/reference-guide/agent-commons.md +++ b/content/en/docs/marketplace/genai/reference-guide/agent-commons.md @@ -252,6 +252,6 @@ If you encounter an error stating that an attribute or a reference is required a If you encounter an error caused by conflicting Java libraries, such as `java.lang.NoSuchMethodError: 'com.fasterxml.jackson.annotation.OptBoolean com.fasterxml.jackson.annotation.JsonProperty.isRequired()'`, try synchronizing all dependencies (**App** > **Synchronize dependencies**) and then restart your application. +### String Comparison Errors with Oracle Database -### Oracle-specifc -Depending on the database used, Mendix maps unlimited string values (e.g. User prompt and System prompt attributes) to data types which might not support string comparisons (e.g. in a rule). This can lead to errors. To fix them, you can edit the attribute types inside of the domain model and set a string length. +When using Oracle Database, Mendix maps unlimited string values (such as user prompt and system prompt attributes) to data types that may not support string comparisons (for example, in a rule). This can lead to errors. To fix the errors, edit the attribute types in the domain model and specify a string length. diff --git a/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md b/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md index d25627d2722..2b24c70b474 100644 --- a/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md +++ b/content/en/docs/marketplace/genai/reference-guide/external-platforms/openai.md @@ -322,14 +322,11 @@ To check your JDK version and update it if necessary, follow these steps: ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes. ### Chat Completions with Vision and JSON Mode (Microsoft Foundry) diff --git a/content/en/docs/marketplace/genai/reference-guide/genai-commons.md b/content/en/docs/marketplace/genai/reference-guide/genai-commons.md index 665efa579b6..24fc602dbef 100644 --- a/content/en/docs/marketplace/genai/reference-guide/genai-commons.md +++ b/content/en/docs/marketplace/genai/reference-guide/genai-commons.md @@ -1022,14 +1022,11 @@ This section lists possible solutions to known issues. ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes. ### Outdated JDK Version Causing Errors while Calling a REST API {#outdated-jdk-version} diff --git a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md index f1cbdb1a30e..3b0ea87f8d7 100644 --- a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md +++ b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-client.md @@ -98,11 +98,8 @@ There are several possible reasons why the client cannot connect to your server. ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes. diff --git a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md index c89fb731db0..9ea0d735b14 100644 --- a/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md +++ b/content/en/docs/marketplace/genai/reference-guide/mcp-modules/mcp-server.md @@ -137,11 +137,8 @@ If you encounter an error caused by conflicting Java libraries, such as `java.la ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes. diff --git a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md index 1f801004a7e..b607822f6f9 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/aws/amazon-bedrock.md @@ -886,11 +886,8 @@ If you encounter an error caused by conflicting Java libraries, such as `java.la ### Missing Jackson Core Dependency -This applies to cases where your app fails to compile with the following error: +This applies to cases where your app fails to compile and throws the following error: `Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0`. -`Missing dependencies: com.fasterxml.jackson.core:jackson-core:2.22.0` - -The cause is that this dependency is advertised in Maven repositories but doesn't actually exist. When you build your app, the automated dependency management attempts to download it, which fails because the version is unavailable. - -To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from the Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once the issue is resolved on Maven side, a dependency range is planned to be used again in order for the advantages of automated dependency management (such as automatic vulnerability fixes) to be leveraged again. +This dependency is advertised in Maven repositories but does not actually exist. When you build your app, the automated dependency management attempts to download it and fails because the version is unavailable. +To resolve this issue, download and install [GenAI Commons 6.2.2](https://marketplace.mendix.com/link/component/239448) from Mendix Marketplace. This module includes a fixed Jackson Core dependency configuration and will allow your app to compile successfully. Once Maven resolves the issue, dependency ranges will be used again to re-enable automated dependency management, including automatic vulnerability fixes.