You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/03/11 09:59:52 UTC

[camel-quarkus] 01/03: Add a pom.xml file in the poms directory to be able to rebuild both BOMs at once

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 a48cd8ec1fa8b6c5f55ef53f33dcddd531c58114
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Tue Mar 10 14:36:31 2020 +0100

    Add a pom.xml file in the poms directory to be able to rebuild both BOMs at once
---
 pom.xml                     |  4 +---
 poms/bom-deployment/pom.xml |  4 ++--
 poms/bom/pom.xml            |  4 ++--
 poms/build-parent/pom.xml   |  4 ++--
 poms/pom.xml                | 39 +++++++++++++++++++++++++++++++++++++++
 5 files changed, 46 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 7c9118d..38a3d89 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,9 +91,7 @@
     </properties>
 
     <modules>
-        <module>poms/bom</module>
-        <module>poms/bom-deployment</module>
-        <module>poms/build-parent</module>
+        <module>poms</module>
         <module>tooling</module>
         <module>extensions</module>
         <module>catalog</module>
diff --git a/poms/bom-deployment/pom.xml b/poms/bom-deployment/pom.xml
index 9531cdc..33cbf66 100644
--- a/poms/bom-deployment/pom.xml
+++ b/poms/bom-deployment/pom.xml
@@ -22,9 +22,9 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.camel.quarkus</groupId>
-        <artifactId>camel-quarkus-parent</artifactId>
+        <artifactId>camel-quarkus-poms</artifactId>
         <version>1.1.0-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
+        <relativePath>../pom.xml</relativePath>
     </parent>
 
     <artifactId>camel-quarkus-bom-deployment</artifactId>
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 812bd8c..ea5535e 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -22,9 +22,9 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.camel.quarkus</groupId>
-        <artifactId>camel-quarkus-parent</artifactId>
+        <artifactId>camel-quarkus-poms</artifactId>
         <version>1.1.0-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
+        <relativePath>../pom.xml</relativePath>
     </parent>
 
     <artifactId>camel-quarkus-bom</artifactId>
diff --git a/poms/build-parent/pom.xml b/poms/build-parent/pom.xml
index 8f39618..d2d0314 100644
--- a/poms/build-parent/pom.xml
+++ b/poms/build-parent/pom.xml
@@ -22,9 +22,9 @@
     <modelVersion>4.0.0</modelVersion>
     <parent>
         <groupId>org.apache.camel.quarkus</groupId>
-        <artifactId>camel-quarkus-parent</artifactId>
+        <artifactId>camel-quarkus-poms</artifactId>
         <version>1.1.0-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
+        <relativePath>../pom.xml</relativePath>
     </parent>
 
     <artifactId>camel-quarkus-build-parent</artifactId>
diff --git a/poms/pom.xml b/poms/pom.xml
new file mode 100644
index 0000000..1b7fb8b
--- /dev/null
+++ b/poms/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-poms</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Camel Quarkus :: POMs</name>
+
+    <modules>
+        <module>bom</module>
+        <module>bom-deployment</module>
+        <module>build-parent</module>
+    </modules>
+</project>