Reputation: 11
Thanks in advance. I am trying to build Camunda platoform from the following Git repo.
https://github.com/camunda/camunda-bpm-platform
Can anyone please guide me on how to set up this project and execute it step by step.
regards -Manash
How to set-up and execute Camunda code base.
Upvotes: 1
Views: 516
Reputation: 121
As Rob suggested, you must use official distros. But if you still want to do this for some reason like bumping up the dependencies. Steps are as follows for Camunda 7.18.0 :
<repository> <id>camunda-bpm-nexus</id> <name>Camunda Platform Maven Repository</name> <url>https://artifacts.camunda.com/artifactory/public/</url> </repository>
./mvnw clean package -P distro-run
There are multiple Profiles, based on need you must modify the above command.
Upvotes: 0
Reputation: 7583
There are many easier ways to setup Camunda 7 than building it yourself. Even when making modification, there usually are SPIs/extension points you can work with.
If you are a Spring Boot developer, you may prefer the Camunda Spring boot initalizer. However, this may lead to an embedded engine architecture, which you may want to avoid in the light of Camunda 8.
If you want an external engine or don't work with Java you can use a container image or download the RUN distribution. You can the use the external task worker pattern to integrate services.
If you want to explore Camunda 8, then it is easiest to use the try for free button on https://camunda.com/ and let yourself be guided by the tutorial.
If you want to use Camunda 8, but don't want to use Saas, you can go for a self-managed installation.
And, of course, there are the "Getting started" guides for Camunda
Upvotes: 1