Cannot import org.camunda

I am learning with video tutorial 3. When I’m trying to import org.camunda it show this error. How can I fix it ?

The following Maven coordinate needs to be added to the projects pom.xml:

<dependency>
  <groupId>org.camunda.bpm</groupId>
  <artifactId>camunda-external-task-client</artifactId>
  <version>${version}</version>
</dependency>

If you want to use a JDK higher than 1.8, please add the following dependency to the projects pom.xml :

<dependency>
  <groupId>com.sun.xml.bind</groupId>
  <artifactId>jaxb-impl</artifactId>
  <version>2.2.4</version>
</dependency>
1 Like