Unable to find @JobWorker in camunda-spring-boot-starter 8.8.0

I am trying to implement a job worker using camunda-spring-boot-starter
According to the documentation here:

It only mentions adding the following dependency:

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

and then use @JobWorker
But when I try to add @JobWorker it couldn’t be found !
So is are there any additional jars I should add to implement a JobWorker in Springboot SDK?
Or has the implementation changed?

NOTE: I am using the following stack:

Eclipse IDE Version: 2025-06 (4.36.0)
JDK 23
Springboot 3.5.6

The issue turned out to be from the Eclipse Maven plugin; when I installed the project from cmd using mvn install, everything worked fine.

2 Likes

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