This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 2e90e013b RATIS-2384. Add Bill of Materials module (#1335)
2e90e013b is described below
commit 2e90e013b15661da514b9895c6831be489d0956f
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Thu Jan 22 10:27:35 2026 +0100
RATIS-2384. Add Bill of Materials module (#1335)
---
pom.xml | 3 +-
ratis-assembly/src/main/assembly/src.xml | 1 +
ratis-bom/pom.xml | 128 +++++++++++++++++++++++++++++++
3 files changed, 131 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 41c32c7c2..e3b7fcb9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,6 +73,7 @@
<module>ratis-tools</module>
<module>ratis-shell</module>
<module>ratis-assembly</module>
+ <module>ratis-bom</module>
</modules>
<scm>
@@ -181,7 +182,7 @@
<!-- override maven.compiler.target=8 defined in parent POM 35; can be
removed on upgrade to 36+ -->
<maven.compiler.target>${maven.compiler.release}</maven.compiler.target>
- <!-- Contains all shaded thirdparty dependencies -->
+ <!-- Contains all shaded thirdparty dependencies; make sure to also update
in ratis-bom/pom.xml -->
<ratis.thirdparty.version>1.0.10</ratis.thirdparty.version>
<!-- Need these for the protobuf compiler. *MUST* match what is in
ratis-thirdparty -->
diff --git a/ratis-assembly/src/main/assembly/src.xml
b/ratis-assembly/src/main/assembly/src.xml
index fdc64ed2a..e20770d54 100644
--- a/ratis-assembly/src/main/assembly/src.xml
+++ b/ratis-assembly/src/main/assembly/src.xml
@@ -31,6 +31,7 @@
<useAllReactorProjects>true</useAllReactorProjects>
<includes>
<include>org.apache.ratis:ratis-assembly</include>
+ <include>org.apache.ratis:ratis-bom</include>
<include>org.apache.ratis:ratis-client</include>
<include>org.apache.ratis:ratis-common</include>
<include>org.apache.ratis:ratis-examples</include>
diff --git a/ratis-bom/pom.xml b/ratis-bom/pom.xml
new file mode 100644
index 000000000..c023790cf
--- /dev/null
+++ b/ratis-bom/pom.xml
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed 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. See accompanying LICENSE file.
+-->
+<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>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-bom</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ <name>Apache Ratis BOM</name>
+ <description>Apache Ratis Bill of Materials (BOM)</description>
+
+ <packaging>pom</packaging>
+
+ <properties>
+ <ratis.thirdparty.version>1.0.10</ratis.thirdparty.version>
+ <!-- no testable code in this module -->
+ <skipTests>true</skipTests>
+ </properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-client</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-docs</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-examples</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-experiments</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-grpc</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-metrics-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-metrics-default</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-metrics-dropwizard3</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-netty</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-proto</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-server</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-server-api</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-shell</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-thirdparty-misc</artifactId>
+ <version>${ratis.thirdparty.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ratis</groupId>
+ <artifactId>ratis-tools</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>com.github.spotbugs</groupId>
+ <artifactId>spotbugs-maven-plugin</artifactId>
+ <version>4.8.6.2</version>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>