This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push: new 0496661b Add a BOM POM commons-vfs2-bom. 0496661b is described below commit 0496661bd2a5ebe4b10c3556ba3d019ea9bd5562 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 22 10:03:45 2023 -0400 Add a BOM POM commons-vfs2-bom. --- commons-vfs2-bom/pom.xml | 68 ++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 1 + src/changes/changes.xml | 3 +++ 3 files changed, 72 insertions(+) diff --git a/commons-vfs2-bom/pom.xml b/commons-vfs2-bom/pom.xml new file mode 100644 index 00000000..0b4014bd --- /dev/null +++ b/commons-vfs2-bom/pom.xml @@ -0,0 +1,68 @@ +<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2-project</artifactId> + <version>2.10.0-SNAPSHOT</version> + <relativePath>../</relativePath> + </parent> + <artifactId>commons-vfs2-bom</artifactId> + <packaging>pom</packaging> + <name>Apache Commons VFS Bill of Materials</name> + <description>This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Maven.</description> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2-distribution</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2examples</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-hdfs</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2-jackrabbit1</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2-jackrabbit2</artifactId> + <version>2.10.0-SNAPSHOT</version> + </dependency> + </dependencies> + </dependencyManagement> + <properties> + <checkstyle.skip>true</checkstyle.skip> + </properties> +</project> diff --git a/pom.xml b/pom.xml index d525fa17..5cc7dc7b 100644 --- a/pom.xml +++ b/pom.xml @@ -41,6 +41,7 @@ <module>commons-vfs2-jackrabbit2</module> <module>commons-vfs2-examples</module> <module>commons-vfs2-distribution</module> + <module>commons-vfs2-bom</module> </modules> <!-- commons-vfs2-sandbox is in profile include-sandbox --> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index b9e67e1b..65ff387d 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -206,6 +206,9 @@ The <action> type attribute can be add,update,fix,remove. <action issue="VFS-833" type="add" dev="ggregory" due-to="Kannan Ramamoorthy, Bernd Eckenfels, Gary Gregory"> Make constructor FileSystemOptions(Map) public. </action> + <action type="add" dev="ggregory" due-to="Gary Gregory"> + Add a BOM POM commons-vfs2-bom. + </action> <!-- UPDATE --> <action type="update" dev="ggregory" due-to="Dependabot, Gary Gregory"> Bump actions/cache and others.