Skip to content

Commit

Permalink
[incubator-kie-issues-1521] Move user task work item handler to its o…
Browse files Browse the repository at this point in the history
…wn module to clear boundaries between user task and processes
  • Loading branch information
elguardian committed Oct 8, 2024
1 parent 30cf1bd commit 1e9413a
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 5 deletions.
4 changes: 4 additions & 0 deletions jbpm/jbpm-deps-groups/jbpm-deps-group-bpmn2-compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask-workitem</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down
4 changes: 4 additions & 0 deletions jbpm/jbpm-deps-groups/jbpm-deps-group-compiler/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask-workitem</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down
5 changes: 4 additions & 1 deletion jbpm/jbpm-deps-groups/jbpm-deps-group-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,14 @@
<groupId>org.kie.kogito</groupId>
<artifactId>process-workitems</artifactId>
</dependency>

<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask-workitem</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
Expand Down
48 changes: 48 additions & 0 deletions jbpm/jbpm-usertask-workitem/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?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>
<artifactId>jbpm</artifactId>
<groupId>org.kie.kogito</groupId>
<version>999-SNAPSHOT</version>
</parent>

<artifactId>jbpm-usertask-workitem</artifactId>


<name>Kogito :: jBPM :: User Task WorkItem</name>
<description>jBPM User Task WorkItem Handler</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-api</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>process-workitems</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-kie-bom</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
</project>
4 changes: 0 additions & 4 deletions jbpm/jbpm-usertask/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-api</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>process-workitems</artifactId>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>kogito-services</artifactId>
Expand Down
1 change: 1 addition & 0 deletions jbpm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<module>process-serialization-protobuf</module>
<module>process-workitems</module>
<module>jbpm-usertask</module>
<module>jbpm-usertask-workitem</module>
<module>jbpm-tools</module>
<module>jbpm-deps-groups</module>
</modules>
Expand Down
5 changes: 5 additions & 0 deletions kogito-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1898,6 +1898,11 @@
<artifactId>jbpm-usertask</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-usertask-workitem</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.kie.kogito</groupId>
<artifactId>jbpm-flow-migration</artifactId>
Expand Down

0 comments on commit 1e9413a

Please sign in to comment.