This is a Maven Bill of Materials (BOM) for use by projects that depend on one or more libraries from the kiwiproject organization.
It defines the latest versions of all officially published kiwiproject libraries, allowing you to manage them centrally and use consistent versions across your projects.
To use this BOM in your Maven project, first import it in the <dependencyManagement> section:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>kiwi-libraries-bom</artifactId>
<version>[current-version]</version> <!-- Replace 'current-version' with the latest version -->
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>Then declare kiwiproject dependencies like this:
<dependencies>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>kiwi</artifactId>
</dependency>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>retrying-again</artifactId>
</dependency>
<dependency>
<groupId>org.kiwiproject</groupId>
<artifactId>kiwi-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>📌 Tip: See the Releases page for the latest version.