Run Activiti from sources
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2016 02:50 AM
mvn clean install
.I did it and get message:
[INFO] Activiti …………………………………… SUCCESS [0.723s][INFO] Activiti - BPMN Model ……………………….. SUCCESS [1.140s][INFO] Activiti - Process Validation ………………… SUCCESS [0.092s][INFO] Activiti - BPMN Layout ………………………. SUCCESS [0.082s][INFO] Activiti - Image Generator …………………… SUCCESS [0.069s][INFO] Activiti - BPMN Converter ……………………. SUCCESS [0.181s][INFO] Activiti - Engine …………………………… SUCCESS [1.468s][INFO] ————————————————————————[INFO] BUILD SUCCESS
But how run application after that? use mvn exec? In this case what is the main class?
mvn exec:java -Dexec.mainClass="module.Main"
Please help - how to start application after mvn clean install?
Thanks a lot for help
- Labels:
-
Archive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2016 03:43 PM
use
mvn clean install -Pdistro
follow a description in http://activiti.org/userguide/index.html#_getting_started(find all necessary artifacts on your local disc)
Regards
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2016 09:13 AM
<code>
mvn clean install -Pdistro
</code>
I tired this command, but I had the same result…
I found in instruction, that need to use .sh? Is it right?
If I will use .sh - do I need <code>mvn clean install</code>?
Sorry for a lot of question, but I`m can`t understand how start app from sources…

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2016 11:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2016 04:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2016 07:10 AM
In fact activiti-engine is just a non-executable library. If you want to see activiti running deploy explorer app to tomcat and see the basics what can be done with activiti.
http://activiti.org/userguide/index.html#demo.setup.one.minute.version
Regards
Martin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2016 07:58 AM
I don`t need activiti-engine or something else, just normal standart activiti

Thanks you for help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-14-2016 07:59 AM
It`s help with maven, but not with Activiti. I tried to do, like you, but also can`t run it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2016 03:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2016 05:32 AM
build war file from sources. (mvn clean install -Pdistro).
find war file in the explorer module target directory.
copy war file to tomcat webapps directory
run tomcat
Regards
Martin
