Reputation: 81
I am very new to JBPM and KieWorkbench ,infact from .net background.
I've installed JBPM 6 on my machine and have developed some guided rules and workflows using KieWorkbench. On local I can easily create,run and Test workflows and Rules, because as I do ant start.demo all setup is done.
Moving forward now I've to deploy this on production environment and share the source code with team members. Limitation is I cannot use Git.
Now I've 2 questions :- 1.How to deploy this on production? 2.How can I share code/project with my teammates.
Any help will be much appreciated. Thanks in advance.
Upvotes: 0
Views: 1569
Reputation: 1210
There was a similar question about using KIE Workbench in production environment. Look at my answer here. If you do not need GUI, I would recommend to use KIE Server for process execution. Unfortunately, it is not described in jBPM documentation but you can find it in the Drools one.
When it comes to sharing projects created in KIE Workbench, you can do one of these two things:
git://localhost:9418/repository_name
.~/.m2/repository
.It may also be a good idea to have your development version of KIE Workbench deployed somewhere where others can access it and see your process definitions directly in this application.
Upvotes: 1