Flowee is a framework for building Java services backed by one or more workflows. Its primary purpose is to provide groundwork for rule-driven workflow selection and execution. Developers can focus the majority of their efforts on building the tasks which hold the actual business requirements.
Workflows built on Flowee will run without the need for "containers" or "engines". The framework is lightweight and integrates seamlessly with any application.
Details are found in this three part blog series: part 1, part 2, part 3.
<dependency>
<groupId>com.jramoyo.flowee</groupId>
<artifactId>flowee-core</artifactId>
<version>1.0</version>
</dependency>
Also include when integrating with Spring:
<dependency>
<groupId>com.jramoyo.flowee</groupId>
<artifactId>flowee-spring</artifactId>
<version>1.0</version>
</dependency>