Bill of Materials
To keep the versions of different Chicory artifacts aligned in your project you can use the provided Maven BOM file.
Import it in the dependencyManagement
section of your pom.xml
:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>bom</artifactId>
<version>${chicory.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
and you can use any Chicory dependency without declaring the version number again in the build:
<dependency>
<groupId>com.dylibso.chicory</groupId>
<artifactId>runtime</artifactId>
</dependency>