Spring Boot Camunda 8 Self-Managed dependencies

Hi, I want to use Camunda 8 Self-Managed with Spring Boot. However, I am unsure about which of the following dependencies are required. Can you guide me?

<repositories>
   <repository>
      <releases>
         <enabled>true</enabled>
      </releases>
      <snapshots>
         <enabled>false</enabled>
      </snapshots>
      <id>identity</id>
      <name>Camunda Identity</name>
      <url>https://artifacts.camunda.com/artifactory/camunda-identity/</url>
   </repository>
</repositories>
<dependency>
   <groupId>io.camunda</groupId>
   <artifactId>spring-boot-starter-camunda-sdk</artifactId>
   <version>8.5.0</version>
</dependency>

OR

        <dependency>
            <groupId>io.camunda.spring</groupId>
            <artifactId>spring-boot-starter-camunda</artifactId>
            <version>...</version>
        </dependency>

        <dependency>
            <groupId>io.camunda</groupId>
            <artifactId>zeebe-client-java</artifactId>
            <version>...</version>
        </dependency>

        <dependency>
            <groupId>io.camunda.spring</groupId>
            <artifactId>spring-boot-starter-camunda-test</artifactId>
            <version>...</version>
            <scope>test</scope>
        </dependency>

Hi @Sina_Mehrad
You might find this article helpful to answer your question Getting started as a Java developer using Spring | Camunda 8 Docs
There is a step-by-step guide on how to configure it.

Regards,
Alex

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.