2 Replies Latest reply on Dec 26, 2012 6:32 AM by xzhsht

    jBPM 5.4.0 Final

    xzhsht

      just  give me jBPM and it's detailed example

        • 1. Re: jBPM 5.4.0 Final  is shit
          salaboy21

          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


          • 2. Re: jBPM 5.4.0 Final  is shit
            xzhsht

            very helpful

            thanks