Setup Dokimos in Java / Kotlin
Getting started
Dokimos offers integrations with JUnit, LangChain4j, Spring AI, Koog, etc. Each of those provides a separate maven dependency.
If you haven't done so already, install dokimos-core in your project:
For Maven with a pom.xml file:
<dependency>
<groupId>dev.dokimos</groupId>
<artifactId>dokimos-core</groupId>
<version>${dokimos.version}</version>
</dependency>
If you use Kotlin, add dokimos-kotlin to your project:
<dependency>
<groupId>dev.dokimos</groupId>
<artifactId>dokimos-kotlin</groupId>
<version>${dokimos.version}</version>
</dependency>
If you use Gradle with a build.gradle file:
implementation 'dev.dokimos:dokimos-core:${dokimosVersion}'
For Kotlin users also add
implementation 'dev.dokimos:dokimos-kotlin:${dokimosVersion}'