https://github.com/cuba-platform/bpm
Business Process Management Addon
https://github.com/cuba-platform/bpm
bpmn business-process cuba-component cuba-platform
Last synced: about 1 month ago
JSON representation
Business Process Management Addon
- Host: GitHub
- URL: https://github.com/cuba-platform/bpm
- Owner: cuba-platform
- License: apache-2.0
- Created: 2018-04-26T14:10:49.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-05T12:09:22.000Z (3 months ago)
- Last Synced: 2025-05-09T00:04:02.439Z (about 1 month ago)
- Topics: bpmn, business-process, cuba-component, cuba-platform
- Language: Java
- Homepage: https://www.cuba-platform.com/
- Size: 1020 KB
- Stars: 43
- Watchers: 2
- Forks: 23
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# CUBA BPM Add-on
[](http://www.apache.org/licenses/LICENSE-2.0)
[](https://travis-ci.org/cuba-platform/bpm)
[](https://doc.cuba-platform.com/bpm-latest)CUBA business process management subsystem.
For more information see [github.com/cuba-platform/cuba](https://github.com/cuba-platform/cuba).
## Build and install
In order to build the add-on from source, you need to install the following:
* Java 8 Development Kit (JDK)
* [CUBA Gradle Plugin](https://github.com/cuba-platform/cuba-gradle-plugin)
* [CUBA](https://github.com/cuba-platform/cuba)Let's assume that you have cloned sources into the following directories:
```
work/
cuba/
cuba-gradle-plugin/
bpm/
```Open terminal in the `work` directory and run the following command to build and install the plugin into your local Maven repository (`~/.m2`):
```
cd cuba-gradle-plugin
gradlew install
```After that, go to the cuba directory and build and install it with the same command:
```
cd ../cuba
gradlew install
```Finally, go to the bpm directory and build and install it with the same command:
```
cd ../bpm
gradlew install
```