JBoss Community

Re: jBPM 5.4.0 Final is shit

created by Mauricio Salatino in jBPM - View the full discussion

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/</url>

        </repository>

        <repository>

            <url>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

Start a new discussion in jBPM at Community