EnableZeebeClient is reporting deprecated. How to implement the zeebe client ? Please find my dependency and springboot application java file.
dependency used -
<dependency>
<groupId>io.camunda</groupId>
<artifactId>spring-zeebe-starter</artifactId>
<version>8.2.1</version>
</dependency>
<dependency>
<groupId>io.camunda</groupId>
<artifactId>zeebe-client-java</artifactId>
<version>8.1.9</version>
</dependency>
I found that EnableZeebeClient is no longer available in the latest dependency. Now what is the new way to enable Zeebe client in springboot application project? Any Help in this?
