This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a420d99e44d4cf16e88d18efd0f8b0fcbabe756c Author: Jiri Ondrusek <[email protected]> AuthorDate: Thu Aug 14 12:49:20 2025 +0200 Fixed compilation error of BuildTimeJsonSchemaResolver --- .../quarkus/core/deployment/catalog/BuildTimeJsonSchemaResolver.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/catalog/BuildTimeJsonSchemaResolver.java b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/catalog/BuildTimeJsonSchemaResolver.java index 2aaa7012a4..1b538b9cad 100644 --- a/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/catalog/BuildTimeJsonSchemaResolver.java +++ b/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/catalog/BuildTimeJsonSchemaResolver.java @@ -74,6 +74,11 @@ public class BuildTimeJsonSchemaResolver implements JSonSchemaResolver { throw new UnsupportedOperationException("Main JSON schema resolution is not supported"); } + @Override + public String getJBangJsonSchema() { + throw new UnsupportedOperationException("JBang JSON schema resolution is not supported"); + } + @Override public String getPojoBeanJSonSchema(String name) { throw new UnsupportedOperationException("Pojo bean JSON schema resolution is not supported");
