mareknovotny / jbpm3-seam

jbpm3 migrated to hibernate4
3 stars 5 forks source link

Upgrade the jbpm-jpdl 3.2.10.SP3_seam2 release to Hibernate 5 #2

Open mark1900 opened 8 years ago

mark1900 commented 8 years ago

Pull request that migrates the jbpm-jpdl (Release 3.2.10.SP3_seam2) library to Hibernate 5.

This update is required as part of upgrading Seam 2.3 to support Wildfly 10.1.0.Final and is related to the discussion with @mareknovotny on issue #1 .

Currently I am using this updated with a custom built Seam library

Notes

Unit Tests

Currently one unit tests does not complete successfully.

Building

It is worth noting that Eclipse will not build this library correctly, so please use the following command.

mvn clean install -Dmaven.test.skip=true -Dmaven.javadoc.skip=true

Using

Once built you can use the new library with the following Maven dependency.

<dependency>
    <groupId>org.jbpm.jbpm3</groupId>
    <artifactId>jbpm-jpdl</artifactId>
    <version>3.2.10.SP3_seam2_hibernate5</version>
    <exclusions>
        <exclusion>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
        </exclusion>
    </exclusions>
</dependency>