This is an automated email from the ASF dual-hosted git repository. ppalaga pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit d3aeb12ef2fec6996ccbc526f06867057ac5ff1f Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Tue Sep 8 21:16:37 2020 +0200 JSonApi JVM support --- catalog/pom.xml | 13 +++ docs/modules/ROOT/nav.adoc | 1 + docs/modules/ROOT/pages/reference/dataformats.adoc | 3 + .../ROOT/pages/reference/extensions/jsonapi.adoc | 29 ++++++ docs/modules/ROOT/pages/reference/index.adoc | 3 + extensions-jvm/jsonapi/deployment/pom.xml | 63 +++++++++++++ .../jsonapi/deployment/JsonapiProcessor.java | 46 ++++++++++ extensions-jvm/jsonapi/integration-test/pom.xml | 100 +++++++++++++++++++++ .../component/jsonapi/it/JsonapiResource.java | 51 +++++++++++ .../quarkus/component/jsonapi/it/JsonapiTest.java | 34 +++++++ extensions-jvm/jsonapi/pom.xml | 40 +++++++++ extensions-jvm/jsonapi/runtime/pom.xml | 94 +++++++++++++++++++ .../main/resources/META-INF/quarkus-extension.yaml | 32 +++++++ extensions-jvm/pom.xml | 1 + poms/bom/pom.xml | 15 ++++ 15 files changed, 525 insertions(+) diff --git a/catalog/pom.xml b/catalog/pom.xml index 33c85b1..37d6fe6 100644 --- a/catalog/pom.xml +++ b/catalog/pom.xml @@ -2051,6 +2051,19 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-jsonpath</artifactId> <version>${project.version}</version> <type>pom</type> diff --git a/docs/modules/ROOT/nav.adoc b/docs/modules/ROOT/nav.adoc index cda327c..12cfb5d 100644 --- a/docs/modules/ROOT/nav.adoc +++ b/docs/modules/ROOT/nav.adoc @@ -168,6 +168,7 @@ *** xref:reference/extensions/jackson.adoc[JSON Jackson] *** xref:reference/extensions/johnzon.adoc[JSON Johnzon] *** xref:reference/extensions/json-validator.adoc[JSON Schema Validator] +*** xref:reference/extensions/jsonapi.adoc[JSonApi] *** xref:reference/extensions/jsonpath.adoc[JsonPath] *** xref:reference/extensions/jt400.adoc[JT400] *** xref:reference/extensions/jta.adoc[JTA] diff --git a/docs/modules/ROOT/pages/reference/dataformats.adoc b/docs/modules/ROOT/pages/reference/dataformats.adoc index a0c41ed..5fa45f1 100644 --- a/docs/modules/ROOT/pages/reference/dataformats.adoc +++ b/docs/modules/ROOT/pages/reference/dataformats.adoc @@ -70,6 +70,9 @@ Stable | 1.0.0 | Marshal POJOs to JSON and back. | xref:reference/extensions/xstream.adoc[JSON XStream] | [.camel-element-artifact]##camel-quarkus-xstream## | [.camel-element-Native]##Native## + Stable | 1.0.0 | Marshal POJOs to JSON and back. +| xref:reference/extensions/jsonapi.adoc[JSonApi] | [.camel-element-artifact]##camel-quarkus-jsonapi## | [.camel-element-JVM]##JVM## + +Preview | 1.1.0 | Marshal and unmarshal JSON:API resources using JSONAPI-Converter library. + | xref:reference/extensions/lzf.adoc[LZF Deflate Compression] | [.camel-element-artifact]##camel-quarkus-lzf## | [.camel-element-Native]##Native## + Stable | 1.0.0 | Compress and decompress streams using LZF deflate algorithm. diff --git a/docs/modules/ROOT/pages/reference/extensions/jsonapi.adoc b/docs/modules/ROOT/pages/reference/extensions/jsonapi.adoc new file mode 100644 index 0000000..cc76f6e --- /dev/null +++ b/docs/modules/ROOT/pages/reference/extensions/jsonapi.adoc @@ -0,0 +1,29 @@ +// Do not edit directly! +// This file was generated by camel-quarkus-maven-plugin:update-extension-doc-page + +[[jsonapi]] += JSonApi +:page-aliases: extensions/jsonapi.adoc + +[.badges] +[.badge-key]##Since Camel Quarkus##[.badge-version]##1.1.0## [.badge-key]##JVM##[.badge-supported]##supported## [.badge-key]##Native##[.badge-unsupported]##unsupported## + +Marshal and unmarshal JSON:API resources using JSONAPI-Converter library. + +== What's inside + +* https://camel.apache.org/components/latest/dataformats/jsonApi-dataformat.html[JSonApi data format] + +Please refer to the above link for usage and configuration details. + +== Maven coordinates + +[source,xml] +---- +<dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi</artifactId> +</dependency> +---- + +Check the xref:user-guide/index.adoc[User guide] for more information about writing Camel Quarkus applications. diff --git a/docs/modules/ROOT/pages/reference/index.adoc b/docs/modules/ROOT/pages/reference/index.adoc index 5dbada7..3b660cd 100644 --- a/docs/modules/ROOT/pages/reference/index.adoc +++ b/docs/modules/ROOT/pages/reference/index.adoc @@ -482,6 +482,9 @@ Stable | 1.0.0 | Marshal POJOs to JSON and back. | xref:reference/extensions/json-validator.adoc[JSON Schema Validator] | camel-quarkus-json-validator | [.camel-element-Native]##Native## + Stable | 1.0.0 | Validate JSON payloads using NetworkNT JSON Schema. +| xref:reference/extensions/jsonapi.adoc[JSonApi] | camel-quarkus-jsonapi | [.camel-element-JVM]##JVM## + +Preview | 1.1.0 | Marshal and unmarshal JSON:API resources using JSONAPI-Converter library. + | xref:reference/extensions/jsonpath.adoc[JsonPath] | camel-quarkus-jsonpath | [.camel-element-Native]##Native## + Stable | 1.0.0 | Evaluate a JsonPath expression against a JSON message body. diff --git a/extensions-jvm/jsonapi/deployment/pom.xml b/extensions-jvm/jsonapi/deployment/pom.xml new file mode 100644 index 0000000..1d0b342 --- /dev/null +++ b/extensions-jvm/jsonapi/deployment/pom.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-jsonapi-deployment</artifactId> + <name>Camel Quarkus :: JSonApi :: Deployment</name> + + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core-deployment</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> + </plugins> + </build> + +</project> diff --git a/extensions-jvm/jsonapi/deployment/src/main/java/org/apache/camel/quarkus/component/jsonapi/deployment/JsonapiProcessor.java b/extensions-jvm/jsonapi/deployment/src/main/java/org/apache/camel/quarkus/component/jsonapi/deployment/JsonapiProcessor.java new file mode 100644 index 0000000..10f10b0 --- /dev/null +++ b/extensions-jvm/jsonapi/deployment/src/main/java/org/apache/camel/quarkus/component/jsonapi/deployment/JsonapiProcessor.java @@ -0,0 +1,46 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.quarkus.component.jsonapi.deployment; + +import io.quarkus.deployment.annotations.BuildStep; +import io.quarkus.deployment.annotations.ExecutionTime; +import io.quarkus.deployment.annotations.Record; +import io.quarkus.deployment.builditem.FeatureBuildItem; +import io.quarkus.deployment.pkg.steps.NativeBuild; +import org.apache.camel.quarkus.core.JvmOnlyRecorder; +import org.jboss.logging.Logger; + +class JsonapiProcessor { + + private static final Logger LOG = Logger.getLogger(JsonapiProcessor.class); + private static final String FEATURE = "camel-jsonapi"; + + @BuildStep + FeatureBuildItem feature() { + return new FeatureBuildItem(FEATURE); + } + + /** + * Remove this once this extension starts supporting the native mode. + */ + @BuildStep(onlyIf = NativeBuild.class) + @Record(value = ExecutionTime.RUNTIME_INIT) + void warnJvmInNative(JvmOnlyRecorder recorder) { + JvmOnlyRecorder.warnJvmInNative(LOG, FEATURE); // warn at build time + recorder.warnJvmInNative(FEATURE); // warn at runtime + } +} diff --git a/extensions-jvm/jsonapi/integration-test/pom.xml b/extensions-jvm/jsonapi/integration-test/pom.xml new file mode 100644 index 0000000..c91ff93 --- /dev/null +++ b/extensions-jvm/jsonapi/integration-test/pom.xml @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-build-parent-it</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../../../poms/build-parent-it/pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-jsonapi-integration-test</artifactId> + <name>Camel Quarkus :: JSonApi :: Integration Test</name> + <description>Integration tests for Camel Quarkus JSonApi extension</description> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-bom-test</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi</artifactId> + </dependency> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-resteasy</artifactId> + </dependency> + + <!-- test dependencies --> + <dependency> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-junit5</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>io.rest-assured</groupId> + <artifactId>rest-assured</artifactId> + <scope>test</scope> + </dependency> + + <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi-deployment</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-maven-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>build</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> diff --git a/extensions-jvm/jsonapi/integration-test/src/main/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiResource.java b/extensions-jvm/jsonapi/integration-test/src/main/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiResource.java new file mode 100644 index 0000000..811ce06 --- /dev/null +++ b/extensions-jvm/jsonapi/integration-test/src/main/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiResource.java @@ -0,0 +1,51 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.quarkus.component.jsonapi.it; + +import javax.enterprise.context.ApplicationScoped; +import javax.inject.Inject; +import javax.ws.rs.GET; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; +import javax.ws.rs.core.Response; + +import org.apache.camel.CamelContext; +import org.jboss.logging.Logger; + +@Path("/jsonapi") +@ApplicationScoped +public class JsonapiResource { + + private static final Logger LOG = Logger.getLogger(JsonapiResource.class); + + private static final String DATAFORMAT_JSONAPI = "jsonApi"; + @Inject + CamelContext context; + + @Path("/load/dataformat/jsonapi") + @GET + @Produces(MediaType.TEXT_PLAIN) + public Response loadDataformatJsonApi() throws Exception { + /* This is an autogenerated test */ + if (context.resolveDataFormat(DATAFORMAT_JSONAPI) != null) { + return Response.ok().build(); + } + LOG.warnf("Could not load [%s] from the Camel context", DATAFORMAT_JSONAPI); + return Response.status(500, DATAFORMAT_JSONAPI + " could not be loaded from the Camel context").build(); + } +} diff --git a/extensions-jvm/jsonapi/integration-test/src/test/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiTest.java b/extensions-jvm/jsonapi/integration-test/src/test/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiTest.java new file mode 100644 index 0000000..06d5864 --- /dev/null +++ b/extensions-jvm/jsonapi/integration-test/src/test/java/org/apache/camel/quarkus/component/jsonapi/it/JsonapiTest.java @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.camel.quarkus.component.jsonapi.it; + +import io.quarkus.test.junit.QuarkusTest; +import io.restassured.RestAssured; +import org.junit.jupiter.api.Test; + +@QuarkusTest +class JsonapiTest { + + @Test + public void loadDataformatJsonApi() { + /* A simple autogenerated test */ + RestAssured.get("/jsonapi/load/dataformat/jsonapi") + .then() + .statusCode(200); + } + +} diff --git a/extensions-jvm/jsonapi/pom.xml b/extensions-jvm/jsonapi/pom.xml new file mode 100644 index 0000000..eb75b81 --- /dev/null +++ b/extensions-jvm/jsonapi/pom.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-build-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../../poms/build-parent/pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-jsonapi-parent</artifactId> + <name>Camel Quarkus :: JSonApi</name> + <packaging>pom</packaging> + + <modules> + <module>deployment</module> + <module>runtime</module> + <module>integration-test</module> + </modules> +</project> diff --git a/extensions-jvm/jsonapi/runtime/pom.xml b/extensions-jvm/jsonapi/runtime/pom.xml new file mode 100644 index 0000000..3ae0f5d --- /dev/null +++ b/extensions-jvm/jsonapi/runtime/pom.xml @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>camel-quarkus-jsonapi</artifactId> + <name>Camel Quarkus :: JSonApi :: Runtime</name> + <description>Marshal and unmarshal JSON:API resources using JSONAPI-Converter library.</description> + + <properties> + <firstVersion>1.1.0</firstVersion> + </properties> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-bom</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-core</artifactId> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-jsonapi</artifactId> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-maven-plugin</artifactId> + <executions> + <execution> + <id>update-extension-doc-page</id> + <goals><goal>update-extension-doc-page</goal></goals> + <phase>process-classes</phase> + </execution> + </executions> + </plugin> + <plugin> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-bootstrap-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <annotationProcessorPaths> + <path> + <groupId>io.quarkus</groupId> + <artifactId>quarkus-extension-processor</artifactId> + <version>${quarkus.version}</version> + </path> + </annotationProcessorPaths> + </configuration> + </plugin> + </plugins> + </build> +</project> diff --git a/extensions-jvm/jsonapi/runtime/src/main/resources/META-INF/quarkus-extension.yaml b/extensions-jvm/jsonapi/runtime/src/main/resources/META-INF/quarkus-extension.yaml new file mode 100644 index 0000000..497a109 --- /dev/null +++ b/extensions-jvm/jsonapi/runtime/src/main/resources/META-INF/quarkus-extension.yaml @@ -0,0 +1,32 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# This is a generated file. Do not edit directly! +# To re-generate, run the following command from the top level directory: +# +# mvn -N cq:update-quarkus-metadata +# +--- +name: "Camel JSonApi" +description: "Marshal and unmarshal JSON:API resources using JSONAPI-Converter library" +metadata: + unlisted: true + guide: "https://camel.apache.org/camel-quarkus/latest/reference/extensions/jsonapi.html" + categories: + - "integration" + status: + - "preview" diff --git a/extensions-jvm/pom.xml b/extensions-jvm/pom.xml index 29a6287..08c49f8 100644 --- a/extensions-jvm/pom.xml +++ b/extensions-jvm/pom.xml @@ -94,6 +94,7 @@ <module>jooq</module> <module>jsch</module> <module>jslt</module> + <module>jsonapi</module> <module>jt400</module> <module>language</module> <module>ldap</module> diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index 46db583..d59c041 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -1151,6 +1151,11 @@ </dependency> <dependency> <groupId>org.apache.camel</groupId> + <artifactId>camel-jsonapi</artifactId> + <version>${camel.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> <artifactId>camel-jsonpath</artifactId> <version>${camel.version}</version> </dependency> @@ -3429,6 +3434,16 @@ </dependency> <dependency> <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi</artifactId> + <version>${camel-quarkus.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> + <artifactId>camel-quarkus-jsonapi-deployment</artifactId> + <version>${camel-quarkus.version}</version> + </dependency> + <dependency> + <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-jsonpath</artifactId> <version>${camel-quarkus.version}</version> </dependency>