Skip to content

Commit 8acff60

Browse files
committed
Regen
1 parent 62cbc50 commit 8acff60

4 files changed

Lines changed: 19 additions & 4 deletions

File tree

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/braintree.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Process payments using Braintree Payments.",
77
"deprecated": false,
88
"firstVersion": "2.17.0",
9-
"label": "saas",
9+
"label": "saas,finance",
1010
"javaType": "org.apache.camel.component.braintree.BraintreeComponent",
1111
"supportLevel": "Stable",
1212
"groupId": "org.apache.camel.springboot",

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/stripe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Camel Stripe component",
77
"deprecated": false,
88
"firstVersion": "4.17.0",
9-
"label": "cloud",
9+
"label": "saas,finance",
1010
"javaType": "org.apache.camel.component.stripe.StripeComponent",
1111
"supportLevel": "Preview",
1212
"groupId": "org.apache.camel.springboot",

catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/tika.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"properties": {
3131
"operation": { "index": 0, "kind": "path", "displayName": "Operation", "group": "producer", "label": "", "required": true, "type": "enum", "javaType": "org.apache.camel.component.tika.TikaOperation", "enum": [ "parse", "detect" ], "deprecated": false, "deprecationNote": "", "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Operation type" },
3232
"tikaParseOutputEncoding": { "index": 1, "kind": "parameter", "displayName": "Tika Parse Output Encoding", "group": "producer", "label": "", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Parse Output Encoding" },
33-
"tikaParseOutputFormat": { "index": 2, "kind": "parameter", "displayName": "Tika Parse Output Format", "group": "producer", "label": "", "required": false, "type": "enum", "javaType": "org.apache.camel.component.tika.TikaParseOutputFormat", "enum": [ "xml", "html", "text", "textMain" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "xml", "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Output Format. Supported output formats. xml: Returns Parsed Content as XML. html: Returns Parsed Content as HTML. text: Returns Parsed Content as Text. textMain: Uses the boilerpipe library to automatically extract the main content from a web page." },
33+
"tikaParseOutputFormat": { "index": 2, "kind": "parameter", "displayName": "Tika Parse Output Format", "group": "producer", "label": "", "required": false, "type": "enum", "javaType": "org.apache.camel.component.tika.TikaParseOutputFormat", "enum": [ "xml", "html", "text" ], "deprecated": false, "autowired": false, "secret": false, "defaultValue": "xml", "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Output Format. Supported output formats. xml: Returns Parsed Content as XML. html: Returns Parsed Content as HTML. text: Returns Parsed Content as Text. textMain: Uses the boilerpipe library to automatically extract the main content from a web page." },
3434
"lazyStartProducer": { "index": 3, "kind": "parameter", "displayName": "Lazy Start Producer", "group": "producer (advanced)", "label": "producer,advanced", "required": false, "type": "boolean", "javaType": "boolean", "deprecated": false, "autowired": false, "secret": false, "defaultValue": false, "description": "Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel's routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing." },
3535
"tikaConfig": { "index": 4, "kind": "parameter", "displayName": "Tika Config", "group": "advanced", "label": "advanced", "required": false, "type": "object", "javaType": "org.apache.tika.config.TikaConfig", "deprecated": false, "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Config" },
3636
"tikaConfigUri": { "index": 5, "kind": "parameter", "displayName": "Tika Config Uri", "group": "advanced", "label": "advanced", "required": false, "type": "string", "javaType": "java.lang.String", "deprecated": false, "autowired": false, "secret": false, "configurationClass": "org.apache.camel.component.tika.TikaConfiguration", "configurationField": "tikaConfiguration", "description": "Tika Config Url" }

tooling/camel-spring-boot-dependencies/pom.xml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>com.openai</groupId>
5656
<artifactId>openai-java</artifactId>
57-
<version>4.8.0</version>
57+
<version>4.9.0</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>io.grpc</groupId>
@@ -2738,6 +2738,11 @@
27382738
<artifactId>camel-cli-connector</artifactId>
27392739
<version>4.17.0-SNAPSHOT</version>
27402740
</dependency>
2741+
<dependency>
2742+
<groupId>org.apache.camel</groupId>
2743+
<artifactId>camel-cli-debug</artifactId>
2744+
<version>4.17.0-SNAPSHOT</version>
2745+
</dependency>
27412746
<dependency>
27422747
<groupId>org.apache.camel</groupId>
27432748
<artifactId>camel-clickup</artifactId>
@@ -4524,11 +4529,21 @@
45244529
<artifactId>camel-test-main-junit5</artifactId>
45254530
<version>4.17.0-SNAPSHOT</version>
45264531
</dependency>
4532+
<dependency>
4533+
<groupId>org.apache.camel</groupId>
4534+
<artifactId>camel-test-main-junit6</artifactId>
4535+
<version>4.17.0-SNAPSHOT</version>
4536+
</dependency>
45274537
<dependency>
45284538
<groupId>org.apache.camel</groupId>
45294539
<artifactId>camel-test-spring-junit5</artifactId>
45304540
<version>4.17.0-SNAPSHOT</version>
45314541
</dependency>
4542+
<dependency>
4543+
<groupId>org.apache.camel</groupId>
4544+
<artifactId>camel-test-spring-junit6</artifactId>
4545+
<version>4.17.0-SNAPSHOT</version>
4546+
</dependency>
45324547
<dependency>
45334548
<groupId>org.apache.camel</groupId>
45344549
<artifactId>camel-threadpoolfactory-vertx</artifactId>

0 commit comments

Comments
 (0)