How do i add camunda to my existing project?

Hi, I have a spring boot project that I created using JHipster. Now i would like to add camunda REST to it. What should I do? What are the configurations that I need to add and what are the beginner steps that I need to follow ?

JHipster provides a Maven wrapper, so you can add the following dependency to your pom

<dependency>
     <groupId>org.camunda.bpm.springboot</groupId>
      <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
      <version>${project-version}</version>
 </dependency>
1 Like

If it’s useful you can take a look at this little hack project i built a while ago with JHipster and Camunda

1 Like

thank you, i will check this

i’ll check this, thank you