You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2021/03/14 18:55:34 UTC

[maven] branch MNG-6806 created (now 67668a0)

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

rfscholte pushed a change to branch MNG-6806
in repository https://gitbox.apache.org/repos/asf/maven.git.


      at 67668a0  [MNG-6808] Provide Maven BOM

This branch includes the following new commits:

     new 67668a0  [MNG-6808] Provide Maven BOM

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[maven] 01/01: [MNG-6808] Provide Maven BOM

Posted by rf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MNG-6806
in repository https://gitbox.apache.org/repos/asf/maven.git

commit 67668a01eef8ff8dd13ec96a7fcc0861c4e66f34
Author: rfscholte <rf...@apache.org>
AuthorDate: Sun Mar 14 19:54:59 2021 +0100

    [MNG-6808] Provide Maven BOM
---
 maven-dependencies/pom.xml | 110 +++++++++++++++++++++++++++++++++++++++++++++
 pom.xml                    |   1 +
 2 files changed, 111 insertions(+)

diff --git a/maven-dependencies/pom.xml b/maven-dependencies/pom.xml
new file mode 100644
index 0000000..17cf6f0
--- /dev/null
+++ b/maven-dependencies/pom.xml
@@ -0,0 +1,110 @@
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven</groupId>
+    <artifactId>maven</artifactId>
+    <version>4.0.0-alpha-1-SNAPSHOT</version>
+  </parent>
+  <artifactId>maven-dependencies</artifactId>
+  <packaging>jar</packaging>
+
+  <name>Maven Dependecies BOM</name>
+  <description>Bill Of Materials for Apache Maven dependencies</description>
+  
+  <dependencyManagement>
+    <!-- Not included: 
+         - apache-maven, as it delivers the binaries
+         - maven-compat, only used by apache-maven distributions to support older releases
+         - maven-slf4j-provider, only used by apache-maven distributions
+         - maven-test-support, only for internal test usage
+         - maven-wrapper, only used by apache-maven-wrapper distributions -->
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-artifact</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>builder-support</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-core</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-embedder</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-model</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-model-builder</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-plugin-api</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-repository-metadata</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-resolver-provider</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-settings</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-settings-builder</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-slf4j-wrapper</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.maven</groupId>
+        <artifactId>maven-xml</artifactId>
+        <version>4.0.0-alpha-1-SNAPSHOT</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 655557b..b272a14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -101,6 +101,7 @@ under the License.
     <module>maven-wrapper</module>
     <module>apache-maven/maven-wrapper.pom</module>
     <module>maven-xml</module>
+    <module>maven-dependencies</module>
   </modules>
 
   <scm>