Common utilities for SmallRye projects.
Add the io.smallrye.common:smallrye-common-bom
to your <dependencyManagement>
:
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-bom</artifactId>
<version>LATEST</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Now you can add the dependencies you need without worrying about the versions.
For example:
<!-- Add a dependency to the SmallRye Common IO module -->
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-io</artifactId>
</dependency>
Please refer to our Wiki for the Contribution Guidelines.