Skip to content

Commit

Permalink
[JBPM-10172] Add test for PER_REQUEST strategy and timers after async (
Browse files Browse the repository at this point in the history
…#2964) (#2970)

Co-authored-by: Gonzalo Muñoz <[email protected]>
  • Loading branch information
github-actions[bot] and gmunozfe committed Jun 1, 2023
1 parent 31b2a04 commit 87665de
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.kie.server.testing</groupId>
<artifactId>common-parent</artifactId>
<version>1.0.0.Final</version>
</parent>

<artifactId>timer-async-project</artifactId>
<version>1.0.0.Final</version>
<name>timer-async-project</name>

<build>
<plugins>
<plugin>
<groupId>org.kie</groupId>
<artifactId>kie-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# empty
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<deployment-descriptor xsi:schemaLocation="http://www.jboss.org/jbpm deployment-descriptor.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<persistence-unit>org.jbpm.domain</persistence-unit>
<audit-persistence-unit>org.jbpm.domain</audit-persistence-unit>
<audit-mode>JPA</audit-mode>
<persistence-mode>JPA</persistence-mode>
<runtime-strategy>PER_REQUEST</runtime-strategy>
<marshalling-strategies/>
<event-listeners/>
<task-event-listeners/>
<globals/>
<work-item-handlers/>
<environment-entries/>
<configurations/>
<required-roles/>
<remoteable-classes>
</remoteable-classes>
</deployment-descriptor>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<kmodule xmlns="http://www.drools.org/xsd/kmodule" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
Loading

0 comments on commit 87665de

Please sign in to comment.