Brijesh-Thakkar commented on code in PR #1998:
URL:
https://github.com/apache/camel-spring-boot/pull/1998#discussion_r4100337565
##########
tooling/camel-spring-boot-generator-maven-plugin/src/main/java/org/apache/camel/springboot/maven/SpringBootAutoConfigurationMojo.java:
##########
@@ -1279,11 +1279,12 @@ private void createLanguageConfigurationSource(String
packageName, LanguageModel
for (LanguageOptionModel option : model.getOptions()) {
checkReservedOptionName("language", model.getName(),
option.getName());
// skip option with name id, or expression in language as we do not
- // need that and skip resultType as they are not global options
+ // need that and skip resultType, trim, resolveResource as they
are not global options
if ("id".equals(option.getName()) ||
"expression".equals(option.getName())
- || "resultType".equals(option.getName())) {
+ || "resultType".equals(option.getName()) ||
"trim".equals(option.getName())
+ || "resolveResource".equals(option.getName())) {
Review Comment:
Running a full mvn package -Pgenerate across the repository regenerated all
remaining 15 starter JSON catalogs (including saxon.json, xpath.json, etc.) and
15 AsciiDoc files (including saxon.adoc, xpath.adoc, etc.). All 71 affected
configuration classes, metadata catalogs, and docs are now fully in sync in the
updated commit.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]