This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
     new 474b9c7  Regen
474b9c7 is described below

commit 474b9c783700bfe3d465af5e7fd774c4b28131f5
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Thu Feb 3 22:23:48 2022 +0100

    Regen
---
 .../org/apache/camel/springboot/catalog/dataformats/any23.json |  2 +-
 .../camel-any23-starter/src/main/docs/any23.json               |  2 +-
 .../any23/springboot/Any23DataFormatConfiguration.java         | 10 +++++-----
 tooling/camel-spring-boot-dependencies/pom.xml                 |  8 ++++----
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
index 6a24daa..9111b86 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/any23.json
@@ -19,7 +19,7 @@
     "outputFormat": { "kind": "attribute", "displayName": "Output Format", 
"required": false, "type": "enum", "javaType": 
"org.apache.camel.dataformat.any23.Any23OutputFormat", "enum": [ "NTRIPLES", 
"TURTLE", "NQUADS", "RDFXML", "JSONLD", "RDFJSON", "RDF4JMODEL" ], 
"deprecated": false, "autowired": false, "secret": false, "defaultValue": 
"RDF4JMODEL", "description": "What RDF syntax to unmarshal as, can be: 
NTRIPLES, TURTLE, NQUADS, RDFXML, JSONLD, RDFJSON, RDF4JMODEL. It is by 
default:  [...]
     "configuration": { "kind": "element", "displayName": "Configuration", 
"required": false, "type": "array", "javaType": 
"java.util.List<org.apache.camel.model.PropertyDefinition>", "deprecated": 
false, "autowired": false, "secret": false, "description": "Configurations for 
Apache Any23 as key-value pairs in order to customize the extraction process. 
The list of supported parameters can be found here. If not provided, a default 
configuration is used." },
     "extractors": { "kind": "element", "displayName": "Extractors", 
"required": false, "type": "array", "javaType": 
"java.util.List<java.lang.String>", "deprecated": false, "autowired": false, 
"secret": false, "description": "List of Any23 extractors to be used in the 
unmarshal operation. A list of the available extractors can be found here here. 
If not provided, all the available extractors are used." },
-    "baseURI": { "kind": "attribute", "displayName": "Base URI", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The URI to use as base for 
building RDF entities if only relative paths are provided." },
+    "baseUri": { "kind": "attribute", "displayName": "Base Uri", "required": 
false, "type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The URI to use as base for 
building RDF entities if only relative paths are provided." },
     "id": { "kind": "attribute", "displayName": "Id", "required": false, 
"type": "string", "javaType": "java.lang.String", "deprecated": false, 
"autowired": false, "secret": false, "description": "The id of this node" }
   }
 }
diff --git a/components-starter/camel-any23-starter/src/main/docs/any23.json 
b/components-starter/camel-any23-starter/src/main/docs/any23.json
index 9c8cd56..d210601 100644
--- a/components-starter/camel-any23-starter/src/main/docs/any23.json
+++ b/components-starter/camel-any23-starter/src/main/docs/any23.json
@@ -14,7 +14,7 @@
   ],
   "properties": [
     {
-      "name": "camel.dataformat.any23.base-u-r-i",
+      "name": "camel.dataformat.any23.base-uri",
       "type": "java.lang.String",
       "description": "The URI to use as base for building RDF entities if only 
relative paths are provided.",
       "sourceType": 
"org.apache.camel.dataformat.any23.springboot.Any23DataFormatConfiguration"
diff --git 
a/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
 
b/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
index 714addc..0a4e80f 100644
--- 
a/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
+++ 
b/components-starter/camel-any23-starter/src/main/java/org/apache/camel/dataformat/any23/springboot/Any23DataFormatConfiguration.java
@@ -61,7 +61,7 @@ public class Any23DataFormatConfiguration
      * The URI to use as base for building RDF entities if only relative paths
      * are provided.
      */
-    private String baseURI;
+    private String baseUri;
 
     public Any23OutputFormat getOutputFormat() {
         return outputFormat;
@@ -87,11 +87,11 @@ public class Any23DataFormatConfiguration
         this.extractors = extractors;
     }
 
-    public String getBaseURI() {
-        return baseURI;
+    public String getBaseUri() {
+        return baseUri;
     }
 
-    public void setBaseURI(String baseURI) {
-        this.baseURI = baseURI;
+    public void setBaseUri(String baseUri) {
+        this.baseUri = baseUri;
     }
 }
\ No newline at end of file
diff --git a/tooling/camel-spring-boot-dependencies/pom.xml 
b/tooling/camel-spring-boot-dependencies/pom.xml
index 4be27a8..0bc50c9 100644
--- a/tooling/camel-spring-boot-dependencies/pom.xml
+++ b/tooling/camel-spring-boot-dependencies/pom.xml
@@ -129,7 +129,7 @@
       <dependency>
         <groupId>com.thoughtworks.xstream</groupId>
         <artifactId>xstream</artifactId>
-        <version>1.4.18</version>
+        <version>1.4.19</version>
       </dependency>
       <dependency>
         <groupId>commons-io</groupId>
@@ -154,7 +154,7 @@
       <dependency>
         <groupId>io.apicurio</groupId>
         <artifactId>apicurio-data-models</artifactId>
-        <version>1.1.16</version>
+        <version>1.1.20</version>
       </dependency>
       <dependency>
         <groupId>io.krakens</groupId>
@@ -4491,7 +4491,7 @@
       <dependency>
         <groupId>org.apache.mina</groupId>
         <artifactId>mina-core</artifactId>
-        <version>2.1.4</version>
+        <version>2.1.5</version>
       </dependency>
       <dependency>
         <groupId>org.apache.openjpa</groupId>
@@ -4863,7 +4863,7 @@
       <dependency>
         <groupId>xerces</groupId>
         <artifactId>xercesImpl</artifactId>
-        <version>2.12.0</version>
+        <version>2.12.2</version>
       </dependency>
     </dependencies>
   </dependencyManagement>

Reply via email to