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 (apache#3706)
  • Loading branch information
elguardian authored and rgdoliveira committed Oct 24, 2024
1 parent 8b5cf4b commit aab0ffb
Show file tree
Hide file tree
Showing 12 changed files with 67 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
49 changes: 49 additions & 0 deletions jbpm/jbpm-usertask-workitem/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?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>
<java.module.name>org.kie.kogito.jbpm.usertask.workitem</java.module.name>
</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 aab0ffb

Please sign in to comment.