[jboss-user] [jBPM] - Re: jBPM 5.4.0 Final is shit

Mauricio Salatino do-not-reply at jboss.com
Wed Dec 26 06:25:15 EST 2012


Mauricio Salatino [https://community.jboss.org/people/salaboy21] created the discussion

"Re: jBPM 5.4.0 Final  is shit"

To view the discussion, visit: https://community.jboss.org/message/784936#784936

--------------------------------------------------------------
Hi,
First of all, try to avoid using that kind of language in the thread topic. You only scare people that usually help and answer questions for free. 
If you just want to use jBPM alone without the installer, eclipse, and jboss you will only need to add the jbpm dependencies to your project.
If you are using maven, this is very very simple:

<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-flow</artifactId>
<version>${jbpm.version}</version>
</dependency>
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-flow-builder</artifactId>
<version>${jbpm.version}</version>
</dependency>
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-bpmn2</artifactId>
<version>${jbpm.version}</version>
</dependency>

Where ${jbpm.version} is 5.4.0.Final in your case. Make sure that you also have the jboss nexus repository configured in your application pom.xml file:
<repositories>

<repository>
<id>jboss-repo</id>
<url> http://repository.jboss.org/nexus/content/groups/public/ http://repository.jboss.org/nexus/content/groups/public/</url>
</repository>
<repository>
<url> http://repo1.maven.org/maven2/ http://repo1.maven.org/maven2/</url>
<id>central</id>
<layout>default</layout>

</repository>
</repositories>

If you want to take a look at some standalone examples you can browse the following repository: 
https://github.com/Salaboy/jBPM5-Developer-Guide/

Hope it helps
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/784936#784936]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20121226/d2183637/attachment-0001.html 


More information about the jboss-user mailing list