The Keyple BOM provides a centralized way to manage the versions of all Keyple artifacts for applications. It ensures that projects using multiple Keyple libraries stay consistent and compatible without requiring explicit version declarations for each dependency.
The BOM also includes the versions of the Keypop dependencies required by Keyple, so you
don’t need to manage them separately.
Versioning
This project follows a date-based versioning scheme:
- Format:
YYYY.MM.DD
(year, month, day). - Release cadence: A new version is released whenever one or more Keyple artifacts are updated.
- Interpretation: The version number indicates the release date, not the compatibility level. Users should check the release notes to see which artifacts were updated.
Java component
2025.09.12
Download
All deliverables are available directly from the Maven Central Repository or by using one of the project resource managers below:
implementation(platform("org.eclipse.keyple:keyple-java-bom:2025.09.12"))
implementation platform('org.eclipse.keyple:keyple-java-bom:2025.09.12')
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.eclipse.keyple</groupId>
<artifactId>keyple-java-bom</artifactId>
<version>2025.09.12</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>