This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch catalog in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 536e6394e605c67efa023dfe916ac0c29b23ee7c Author: Claus Ibsen <[email protected]> AuthorDate: Tue Oct 8 08:51:58 2019 +0200 #75: Adding camel-quarkus-catalog (work in progress) --- pom.xml | 1 + tooling/maven/pom.xml | 40 ++++++++++++++++++++++++++++++++++++++++ tooling/pom.xml | 38 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) diff --git a/pom.xml b/pom.xml index f93af19..3220cf1 100644 --- a/pom.xml +++ b/pom.xml @@ -74,6 +74,7 @@ <module>poms/bom</module> <module>poms/bom-deployment</module> <module>poms/build-parent</module> + <module>poms/tooling</module> <module>extensions</module> <module>integration-tests</module> <module>examples</module> diff --git a/tooling/maven/pom.xml b/tooling/maven/pom.xml new file mode 100644 index 0000000..4ec1b6c --- /dev/null +++ b/tooling/maven/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-tooling</artifactId> + <version>0.2.1-SNAPSHOT</version> + </parent> + + <artifactId>camel-quarkus-tooling-maven</artifactId> + <packaging>pom</packaging> + + <name>Camel Quarkus :: Tooling :: Maven</name> + + <modules> + <!-- + <module></module> + --> + </modules> + +</project> diff --git a/tooling/pom.xml b/tooling/pom.xml new file mode 100644 index 0000000..366832e --- /dev/null +++ b/tooling/pom.xml @@ -0,0 +1,38 @@ +<?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>0.2.1-SNAPSHOT</version> + </parent> + + <artifactId>camel-quarkus-tooling</artifactId> + <packaging>pom</packaging> + + <name>Camel Quarkus :: Tooling</name> + + <modules> + <module>maven</module> + </modules> + +</project>
