Reputation: 2503
I am trying to create spring-boot project for activiti but it is not showing activiti dependency. How can I know that with which springboot version,activiti version is mapped?
Upvotes: 0
Views: 644
Reputation: 2503
Spring boot 2 doesn't have activiti anymore. Manually need to add activiti dependency.
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter</artifactId>
<version>7.0.0.Beta1</version>
</dependency>
Upvotes: 1
Reputation: 6959
If you're refererring to Activiti, this is not included in the Spring Initializr so you will need to include this manually yourself.
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter-basic</artifactId>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.183</version>
</dependency>
I haven't used Activiti before but this is based on their Spring Boot documentation.
Upvotes: 2