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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-upgrade-recipes.git


The following commit(s) were added to refs/heads/main by this push:
     new 4bc6aca  Use Apache POM as parent
4bc6aca is described below

commit 4bc6acad0489563d96f551586ab028e1ebd2f236
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Tue Jul 23 10:06:26 2024 +0200

    Use Apache POM as parent
    
    Signed-off-by: Andrea Cosentino <anco...@gmail.com>
---
 pom.xml | 39 ++++++++++++++++++++++++++++++++++++++-
 1 file changed, 38 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index ed039b3..ead93e8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,9 +17,15 @@
     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";>
+<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</groupId>
+        <artifactId>apache</artifactId>
+        <version>33</version>
+    </parent>
 
     <groupId>org.apache.camel</groupId>
     <version>1.0.0-SNAPSHOT</version>
@@ -28,6 +34,37 @@
     <name>Camel Upgrades Recipes</name>
     <description>Migration recipes (using openrewrite) to make Maven 
migrations easier</description>
 
+    <developers>
+        <developer>
+            <name>The Apache Camel Team</name>
+            <email>d...@camel.apache.org</email>
+            <url>https://camel.apache.org</url>
+            <organization>Apache Software Foundation</organization>
+            <organizationUrl>http://apache.org/</organizationUrl>
+        </developer>
+    </developers>
+
+    <mailingLists>
+        <mailingList>
+            <name>Development List</name>
+            <subscribe>dev-subscr...@camel.apache.org</subscribe>
+            <unsubscribe>dev-unsubscr...@camel.apache.org</unsubscribe>
+            <post>d...@camel.apache.org</post>
+        </mailingList>
+        <mailingList>
+            <name>User List</name>
+            <subscribe>users-subscr...@camel.apache.org</subscribe>
+            <unsubscribe>users-unsubscr...@camel.apache.org</unsubscribe>
+            <post>us...@camel.apache.org</post>
+        </mailingList>
+        <mailingList>
+            <name>Commits List</name>
+            <subscribe>commits-subscr...@camel.apache.org</subscribe>
+            <unsubscribe>commits-unsubscr...@camel.apache.org</unsubscribe>
+            <post>commits@camel.apache.org</post>
+        </mailingList>
+    </mailingLists>
+
 
     <properties>
         <!-- Place for jars of the different version, used to compile tests -->

Reply via email to