This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch docling-serve in repository https://gitbox.apache.org/repos/asf/camel.git
commit af1f71890041960be7436f93e8bac2b35299ac2a Author: Andrea Cosentino <[email protected]> AuthorDate: Tue Oct 7 11:42:25 2025 +0200 CAMEL-22503 - Camel-Docling: Support Docling-serve and being able to invoke the service as API Signed-off-by: Andrea Cosentino <[email protected]> --- .../org/apache/camel/catalog/test-infra/metadata.json | 9 +++++++++ test-infra/camel-test-infra-all/pom.xml | 13 ++++++++++++- .../src/generated/resources/META-INF/metadata.json | 9 +++++++++ 3 files changed, 30 insertions(+), 1 deletion(-) diff --git a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/test-infra/metadata.json b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/test-infra/metadata.json index 21d1266f990a..e2b25797cd9c 100644 --- a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/test-infra/metadata.json +++ b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/test-infra/metadata.json @@ -439,6 +439,15 @@ "groupId" : "org.apache.camel", "artifactId" : "camel-test-infra-torchserve", "version" : "4.15.0-SNAPSHOT" +}, { + "service" : "org.apache.camel.test.infra.docling.services.DoclingInfraService", + "description" : "Document processing and conversion service", + "implementation" : "org.apache.camel.test.infra.docling.services.DoclingLocalContainerInfraService", + "alias" : [ "docling" ], + "aliasImplementation" : [ ], + "groupId" : "org.apache.camel", + "artifactId" : "camel-test-infra-docling", + "version" : "4.15.0-SNAPSHOT" }, { "service" : "org.apache.camel.test.infra.aws.common.services.AWSInfraService", "description" : "Local AWS Services with LocalStack", diff --git a/test-infra/camel-test-infra-all/pom.xml b/test-infra/camel-test-infra-all/pom.xml index 370440ac0ba9..652614735a84 100644 --- a/test-infra/camel-test-infra-all/pom.xml +++ b/test-infra/camel-test-infra-all/pom.xml @@ -261,6 +261,11 @@ <artifactId>camel-test-infra-keycloak</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-test-infra-docling</artifactId> + <version>${project.version}</version> + </dependency> </dependencies> <build> @@ -535,7 +540,13 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-test-infra-keycloak</artifactId> </dependency> - </fileSet> + </fileSet> + <fileSet> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-test-infra-docling</artifactId> + </dependency> + </fileSet> </fileSets> </configuration> </execution> diff --git a/test-infra/camel-test-infra-all/src/generated/resources/META-INF/metadata.json b/test-infra/camel-test-infra-all/src/generated/resources/META-INF/metadata.json index 21d1266f990a..e2b25797cd9c 100644 --- a/test-infra/camel-test-infra-all/src/generated/resources/META-INF/metadata.json +++ b/test-infra/camel-test-infra-all/src/generated/resources/META-INF/metadata.json @@ -439,6 +439,15 @@ "groupId" : "org.apache.camel", "artifactId" : "camel-test-infra-torchserve", "version" : "4.15.0-SNAPSHOT" +}, { + "service" : "org.apache.camel.test.infra.docling.services.DoclingInfraService", + "description" : "Document processing and conversion service", + "implementation" : "org.apache.camel.test.infra.docling.services.DoclingLocalContainerInfraService", + "alias" : [ "docling" ], + "aliasImplementation" : [ ], + "groupId" : "org.apache.camel", + "artifactId" : "camel-test-infra-docling", + "version" : "4.15.0-SNAPSHOT" }, { "service" : "org.apache.camel.test.infra.aws.common.services.AWSInfraService", "description" : "Local AWS Services with LocalStack",
