The extension is published on maven central, so if you are using maven, just add the dependency:
<dependency>
<groupId>org.camunda.bpm.extension</groupId>
<artifactId>camunda-bpm-spring-boot-starter([-rest|-webapp])</artifactId>
<version>1.2.1</version>
</dependency>and then create a simple process application like this one:
@SpringBootApplication
@ProcessApplication
public class WebappExampleProcessApplication extends SpringBootProcessApplication {
public static void main(String[] args) {
SpringApplication.run(WebappExampleProcessApplication.class, args);
}
}Check out the Documentation and the Examples
- Milestone 1.3.0
- Milestone 2.0.0 - Java8 + Spring Boot 1.4
