adoroszlai opened a new pull request, #1335:
URL: https://github.com/apache/ratis/pull/1335
## What changes were proposed in this pull request?
Create new submodule `ratis-bom` (Bill of Materials) for easier dependency
management in projects using Ratis.
Before:
```xml
<dependency>
<groupId>org.apache.ratis</groupId>
<artifactId>ratis-client</artifactId>
<version>${ratis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.ratis</groupId>
<artifactId>ratis-common</artifactId>
<version>${ratis.version}</version>
</dependency>
...
<dependency>
<groupId>org.apache.ratis</groupId>
<artifactId>ratis-server</artifactId>
<version>${ratis.version}</version>
</dependency>
```
After:
```xml
<dependency>
<groupId>org.apache.ratis</groupId>
<artifactId>ratis-bom</artifactId>
<version>${ratis.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
```
https://issues.apache.org/jira/browse/RATIS-2384
## How was this patch tested?
CI:
https://github.com/adoroszlai/ratis/actions/runs/21143136602
Also tried it locally by adding `ratis-bom` to Ozone after `mvn -DskipTests
install`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]