Skip to content

Commit

Permalink
Generated files after rebase and conflit issues
Browse files Browse the repository at this point in the history
  • Loading branch information
JiriOndrusek committed Nov 29, 2024
1 parent e29b414 commit a20a75b
Show file tree
Hide file tree
Showing 6 changed files with 3,897 additions and 3,865 deletions.
2 changes: 1 addition & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ asciidoc:
requires: "'util=camel-website-util,quarkus=xref:js/quarkus.js'"

# Project versions
camel-version: 4.8.1 # replace ${camel.version}
camel-version: 4.9.0-SNAPSHOT # replace ${camel.version}
camel-docs-version: 4.8.x
camel-quarkus-version: 3.17.0 # replace ${camel-quarkus.version}
quarkus-version: 3.17.1 # replace ${quarkus.version}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.camel.quarkus.core;

import java.util.List;
import java.util.Map;

import org.apache.camel.CamelContext;
import org.apache.camel.NamedNode;
Expand All @@ -40,4 +41,12 @@ public String dumpBeansAsXml(CamelContext context, List<Object> beans) throws Ex
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io-dsl");
}

@Override
public String dumpDataFormatsAsXml(CamelContext context, Map<String, Object> dataFormats)
throws Exception {
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-xml-jaxb or camel-quarkus-xml-io-dsl");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.camel.quarkus.core;

import java.util.List;
import java.util.Map;

import org.apache.camel.CamelContext;
import org.apache.camel.NamedNode;
Expand All @@ -41,4 +42,11 @@ public String dumpModelAsYaml(CamelContext context, NamedNode definition, boolea
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-yaml-io");
}

@Override
public String dumpDataFormatsAsYaml(CamelContext context, Map<String, Object> dataFormats)
throws Exception {
throw new UnsupportedOperationException(
"Please add a dependency to camel-quarkus-yaml-io");
}
}
Loading

0 comments on commit a20a75b

Please sign in to comment.