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 e0c7b5d15acf562c70cc41bd40b93b23e4ad536e Author: Peter Palaga <ppal...@redhat.com> AuthorDate: Mon Mar 16 14:24:49 2020 +0100 Add JVM-only extensions module --- extensions-jvm/pom.xml | 39 +++++++++++++++++++++++++++++++++++++++ pom.xml | 1 + 2 files changed, 40 insertions(+) diff --git a/extensions-jvm/pom.xml b/extensions-jvm/pom.xml new file mode 100644 index 0000000..4a18308 --- /dev/null +++ b/extensions-jvm/pom.xml @@ -0,0 +1,39 @@ +<?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-parent</artifactId> + <version>1.1.0-SNAPSHOT</version> + </parent> + + <artifactId>camel-quarkus-extensions-jvm</artifactId> + <packaging>pom</packaging> + + <name>Camel Quarkus :: Extensions JVM</name> + <description>Autogenerated extensions not yet tested in the native mode</description> + + <modules> + <!-- extensions a..z; do not remove this comment, it is important when sorting via mvn process-resources -Pformat --> + </modules> + +</project> diff --git a/pom.xml b/pom.xml index f948eb0..84cdb6f 100644 --- a/pom.xml +++ b/pom.xml @@ -97,6 +97,7 @@ <module>extensions-core</module> <module>extensions-support</module> <module>extensions</module> + <module>extensions-jvm</module> <module>catalog</module> <module>integration-tests</module> <module>examples</module>