You can download jbpm-persistence-jpa-5.2.5.final.jar in this page.
Open Source
jbpm-persistence-jpa-5.2.5.final.jar file has the following types.
META-INF/JBPMorm.xml META-INF/MANIFEST.MF META-INF/ProcessInstanceInfo.hbm.xml META-INF/maven/org.jbpm/jbpm-persistence-jpa/pom.properties META-INF/maven/org.jbpm/jbpm-persistence-jpa/pom.xml org.jbpm.persistence.JpaProcessPersistenceContext.class org.jbpm.persistence.JpaProcessPersistenceContextManager.class org.jbpm.persistence.ManualProcessTransactionManager.class org.jbpm.persistence.MapBasedProcessPersistenceContext.class org.jbpm.persistence.MapProcessPersistenceContextManager.class org.jbpm.persistence.NonTransactionalProcessPersistentSession.class org.jbpm.persistence.ProcessPersistenceContext.class org.jbpm.persistence.ProcessPersistenceContextManager.class org.jbpm.persistence.ProcessStorage.class org.jbpm.persistence.ProcessStorageEnvironmentBuilder.class org.jbpm.persistence.jta.ContainerManagedTransactionManager.class org.jbpm.persistence.processinstance.JPAProcessInstanceManager.class org.jbpm.persistence.processinstance.JPAProcessInstanceManagerFactory.class org.jbpm.persistence.processinstance.JPASignalManager.class org.jbpm.persistence.processinstance.JPASignalManagerFactory.class org.jbpm.persistence.processinstance.ProcessInstanceEventInfo.class org.jbpm.persistence.processinstance.ProcessInstanceInfo.class
jbpm-persistence-jpa-5.2.5.final.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jbpm</groupId> <artifactId>jbpm</artifactId> <version>5.2.5.Final</version> </parent> <artifactId>jbpm-persistence-jpa</artifactId> <name>jBPM :: JPA Persistence</name> <description>jBPM JPA Persistence</description> <dependencies> <dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-flow-builder</artifactId> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-jpa</artifactId> </dependency> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <!-- Following 2 dependencies needed for making the build work with JDK5 --> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-xjc</artifactId> <scope>provided</scope> </dependency> <!-- Test --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.drools</groupId> <artifactId>drools-persistence-jpa</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.btm</groupId> <artifactId>btm</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>src/test/resources</directory> <filtering>false</filtering> </testResource> <testResource> <directory>src/test/filtered-resources</directory> <filtering>true</filtering> </testResource> </testResources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>hibernate3-maven-plugin</artifactId> <version>2.2</version> <configuration> <components> <component> <name>hbm2ddl</name> <implementation>jpaconfiguration</implementation> </component> </components> <componentProperties> <persistenceUnit>org.jbpm.persistence.jpa</persistenceUnit> <outputfilename>schema.ddl</outputfilename> <drop>false</drop> <create>true</create> <export>false</export> <format>true</format> </componentProperties> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>jar</id> <goals> <goal>jar</goal> </goals> <configuration> <archive> <manifestFile>META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <id>manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <manifestLocation>META-INF</manifestLocation> <instructions> <_removeheaders>Ignore-Package</_removeheaders> <Bundle-SymbolicName>org.jbpm.flow-persistence-jpa;singleton:=true</Bundle-SymbolicName> <Require-Bundle>org.drools.core;bundle-version="${drools.osgi.version}",org.drools.compiler;bundle-version="${drools.osgi.version}"</Require-Bundle> <Import-Package>*</Import-Package> <Export-Package>org.jbpm.persistence.*</Export-Package> <DynamicImport-Package>*</DynamicImport-Package> </instructions> </configuration> </plugin> <plugin> <!-- ensure that db files are deleted before _any_ run otherwise we get tests failing because of leftover db's --> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>btm*</include> <include>JPADroolsFlow.*.db</include> </includes> </fileset> </filesets> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.jbpm</groupId> <artifactId>jbpm-persistence-jpa</artifactId> <version>5.2.5.final</version> </dependency>
If you think the following jbpm-persistence-jpa-5.2.5.final.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jbpm-persistence-jpa-5.2.5.final.jar file