diff --git a/bom/datapool-dependencies/pom.xml b/bom/datapool-dependencies/pom.xml index fb7320732..65527e9eb 100644 --- a/bom/datapool-dependencies/pom.xml +++ b/bom/datapool-dependencies/pom.xml @@ -6,7 +6,7 @@ camunda-bpm-taskpool io.holunda.taskpool - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/bom/taskpool-dependencies/pom.xml b/bom/taskpool-dependencies/pom.xml index 74059f2fa..109b805dd 100644 --- a/bom/taskpool-dependencies/pom.xml +++ b/bom/taskpool-dependencies/pom.xml @@ -6,7 +6,7 @@ camunda-bpm-taskpool io.holunda.taskpool - 2.1.3 + 2.1.4 ../../pom.xml @@ -30,7 +30,7 @@ io.holunda.taskpool camunda-bpm-taskpool-collector - 2.1.3 + 2.1.4 io.holunda.taskpool diff --git a/datapool/datapool-api/pom.xml b/datapool/datapool-api/pom.xml index 2b38f8ac1..00b820bbe 100755 --- a/datapool/datapool-api/pom.xml +++ b/datapool/datapool-api/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-datapool-root - 2.1.3 + 2.1.4 camunda-bpm-datapool-api diff --git a/datapool/datapool-core/pom.xml b/datapool/datapool-core/pom.xml index 586aa5534..61e3c168d 100755 --- a/datapool/datapool-core/pom.xml +++ b/datapool/datapool-core/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-datapool-root - 2.1.3 + 2.1.4 camunda-bpm-datapool-core diff --git a/datapool/datapool-event/pom.xml b/datapool/datapool-event/pom.xml index 18e0116de..28bfe969d 100755 --- a/datapool/datapool-event/pom.xml +++ b/datapool/datapool-event/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-datapool-root - 2.1.3 + 2.1.4 camunda-bpm-datapool-event diff --git a/datapool/pom.xml b/datapool/pom.xml index c9c557169..ced0d853d 100755 --- a/datapool/pom.xml +++ b/datapool/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 camunda-bpm-datapool-root diff --git a/docs/pom.xml b/docs/pom.xml index a900ce243..8bcbf199c 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 camunda-bpm-taskpool-docs diff --git a/docs/src/orchid/resources/changelog/2.1/2.1.4.ad b/docs/src/orchid/resources/changelog/2.1/2.1.4.ad new file mode 100644 index 000000000..df9595b98 --- /dev/null +++ b/docs/src/orchid/resources/changelog/2.1/2.1.4.ad @@ -0,0 +1,7 @@ +--- +version: 2.1.4 +--- + +== Bugfixes + +* Fixed implementation of the task collector data serialization, #303 diff --git a/engine/camunda-engine-client/pom.xml b/engine/camunda-engine-client/pom.xml index 70adbdb75..c7494d264 100644 --- a/engine/camunda-engine-client/pom.xml +++ b/engine/camunda-engine-client/pom.xml @@ -4,7 +4,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 camunda-bpm-engine-client diff --git a/engine/datapool-collector/pom.xml b/engine/datapool-collector/pom.xml index 7366bb93f..dce4eff1e 100755 --- a/engine/datapool-collector/pom.xml +++ b/engine/datapool-collector/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 camunda-bpm-datapool-collector diff --git a/engine/pom.xml b/engine/pom.xml index 9dc1a5c6c..79ec052f2 100755 --- a/engine/pom.xml +++ b/engine/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 camunda-bpm-taskpool-engine-root diff --git a/engine/property-taskurl-resolver/pom.xml b/engine/property-taskurl-resolver/pom.xml index 1e4bfe2cd..8f78fa4fa 100644 --- a/engine/property-taskurl-resolver/pom.xml +++ b/engine/property-taskurl-resolver/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 taskpool-property-taskurl-resolver diff --git a/engine/taskpool-collector/pom.xml b/engine/taskpool-collector/pom.xml index 66ec8330f..9740671b1 100755 --- a/engine/taskpool-collector/pom.xml +++ b/engine/taskpool-collector/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-collector diff --git a/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/ProjectingCommandAccumulator.kt b/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/ProjectingCommandAccumulator.kt index cda5deb10..5a062b84c 100644 --- a/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/ProjectingCommandAccumulator.kt +++ b/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/ProjectingCommandAccumulator.kt @@ -1,15 +1,17 @@ package io.holunda.camunda.taskpool.sender.accumulator import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper import io.holunda.camunda.taskpool.api.business.WithCorrelations import io.holunda.camunda.taskpool.api.task.* +import io.holunda.camunda.taskpool.configureTaskpoolJacksonObjectMapper import io.holunda.camunda.variable.serializer.serialize import kotlin.reflect.KClass /** * Sorts commands by their order id and project attribute to one command - * @param objectMapper optional object mapper used for serialization, defaults to jacksonObjectMapper with Kotlin module. + * @param objectMapper optional object mapper used for serialization. */ class ProjectingCommandAccumulator( val objectMapper: ObjectMapper @@ -74,7 +76,9 @@ class ProjectingCommandAccumulator( WithPayload::payload.name, WithCorrelations::correlations.name ), - projectionErrorDetector = EngineTaskCommandProjectionErrorDetector + projectionErrorDetector = EngineTaskCommandProjectionErrorDetector, + mapper = jacksonMapper(objectMapper = objectMapper), + unmapper = jacksonUnmapper(clazz = command::class.java, objectMapper = objectMapper) ) /** diff --git a/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/projectProperties.kt b/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/projectProperties.kt index 78f5ab626..a397d8771 100644 --- a/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/projectProperties.kt +++ b/engine/taskpool-collector/src/main/kotlin/io/holunda/camunda/taskpool/sender/accumulator/projectProperties.kt @@ -1,6 +1,7 @@ package io.holunda.camunda.taskpool.sender.accumulator import com.fasterxml.jackson.core.type.TypeReference +import com.fasterxml.jackson.databind.ObjectMapper import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper import io.holunda.camunda.taskpool.configureTaskpoolJacksonObjectMapper import org.slf4j.LoggerFactory @@ -38,8 +39,8 @@ fun projectProperties( original: T, details: List = emptyList(), propertyOperationConfig: PropertyOperationConfiguration = mapOf(), - mapper: Mapper = jacksonMapper(), - unmapper: Unmapper = jacksonUnmapper(original::class.java), + mapper: Mapper, + unmapper: Unmapper, ignoredProperties: List = emptyList(), projectionErrorDetector: ProjectionErrorDetector ): T { @@ -100,8 +101,8 @@ fun projectProperties( /** * Default Jackson Mapper (object to map). */ -fun jacksonMapper(): Mapper = { - jacksonObjectMapper() +fun jacksonMapper(objectMapper: ObjectMapper = jacksonObjectMapper()): Mapper = { + objectMapper .configureTaskpoolJacksonObjectMapper() .convertValue(it, object : TypeReference>() {}) } @@ -109,9 +110,10 @@ fun jacksonMapper(): Mapper = { /** * Default Jackson Unmapper (map to object). */ -fun jacksonUnmapper(clazz: Class): Unmapper = { - jacksonObjectMapper() - .configureTaskpoolJacksonObjectMapper().convertValue(it, clazz) +fun jacksonUnmapper(clazz: Class, objectMapper: ObjectMapper = jacksonObjectMapper()): Unmapper = { + objectMapper + .configureTaskpoolJacksonObjectMapper() + .convertValue(it, clazz) } /** diff --git a/engine/taskpool-collector/src/test/kotlin/io/holunda/camunda/taskpool/sender/projectPropertiesTest.kt b/engine/taskpool-collector/src/test/kotlin/io/holunda/camunda/taskpool/sender/projectPropertiesTest.kt index dc93a0406..b1e00498b 100644 --- a/engine/taskpool-collector/src/test/kotlin/io/holunda/camunda/taskpool/sender/projectPropertiesTest.kt +++ b/engine/taskpool-collector/src/test/kotlin/io/holunda/camunda/taskpool/sender/projectPropertiesTest.kt @@ -2,9 +2,9 @@ package io.holunda.camunda.taskpool.sender -import io.holunda.camunda.taskpool.sender.accumulator.ProjectionErrorDetector -import io.holunda.camunda.taskpool.sender.accumulator.PropertyOperation -import io.holunda.camunda.taskpool.sender.accumulator.projectProperties +import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper +import io.holunda.camunda.taskpool.configureTaskpoolJacksonObjectMapper +import io.holunda.camunda.taskpool.sender.accumulator.* import org.assertj.core.api.Assertions.assertThat import org.junit.Test import java.util.* @@ -12,11 +12,13 @@ import kotlin.reflect.KClass class PropertiesProjectorTest { + private val objectMapper = jacksonObjectMapper().configureTaskpoolJacksonObjectMapper() + @Test fun `should return the command if details are empty`() { val model = model("Foo", "My foo model") - val result = projectProperties(model, projectionErrorDetector = object:ProjectionErrorDetector{}) + val result = projectProperties(model, projectionErrorDetector = object:ProjectionErrorDetector{}, mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper)) assertThat(result).isEqualTo(model) } @@ -25,7 +27,7 @@ class PropertiesProjectorTest { fun `should replace a detail`() { val model = model("Foo", "My foo model") - val result = projectProperties(model, listOf(named(name = "new name", id = model.id)), projectionErrorDetector = object:ProjectionErrorDetector{}) + val result = projectProperties(model, listOf(named(name = "new name", id = model.id)), projectionErrorDetector = object:ProjectionErrorDetector{}, mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper)) assertThat(result).isEqualTo(model.copy(name = "new name")) } @@ -37,7 +39,8 @@ class PropertiesProjectorTest { val result = projectProperties(model, listOf( named(name = "wrong name", id = model.id), named(name = "new name", id = model.id)), - projectionErrorDetector = object:ProjectionErrorDetector{} + projectionErrorDetector = object:ProjectionErrorDetector{}, + mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper) ) assertThat(result).isEqualTo(model.copy(name = "new name")) @@ -50,7 +53,7 @@ class PropertiesProjectorTest { val result = projectProperties(model, listOf( payload(payload = mutableMapOf("zee" to "test"), id = model.id), named(name = "new name", id = model.id)), - projectionErrorDetector = object:ProjectionErrorDetector{} + projectionErrorDetector = object:ProjectionErrorDetector{}, mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper) ) assertThat(result).isEqualTo(model.copy(name = "new name", enriched = true, payload = mutableMapOf("zee" to "test"))) @@ -73,7 +76,7 @@ class PropertiesProjectorTest { } } ), - projectionErrorDetector = object:ProjectionErrorDetector{} + projectionErrorDetector = object:ProjectionErrorDetector{}, mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper) ) assertThat(result).isEqualTo(model.copy(name = "new name", enriched = true, payload = mutableMapOf("foo" to "bar", "zee" to "test"))) @@ -103,7 +106,7 @@ class PropertiesProjectorTest { } } ), - projectionErrorDetector = object:ProjectionErrorDetector{} + projectionErrorDetector = object:ProjectionErrorDetector{}, mapper = jacksonMapper(objectMapper), unmapper = jacksonUnmapper(model::class.java, objectMapper) ) // map elements should vanish, kermit remains alone in the list diff --git a/engine/taskpool-engine-springboot-starter/pom.xml b/engine/taskpool-engine-springboot-starter/pom.xml index ccdd6ac4f..afb88701f 100755 --- a/engine/taskpool-engine-springboot-starter/pom.xml +++ b/engine/taskpool-engine-springboot-starter/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-engine-springboot-starter diff --git a/engine/variable-serializer/pom.xml b/engine/variable-serializer/pom.xml index 87492390d..19ff0fb8a 100755 --- a/engine/variable-serializer/pom.xml +++ b/engine/variable-serializer/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-engine-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-variable-serializer diff --git a/examples/components/process-backend/pom.xml b/examples/components/process-backend/pom.xml index 6261889e5..b2c95db39 100755 --- a/examples/components/process-backend/pom.xml +++ b/examples/components/process-backend/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/process-forms/pom.xml b/examples/components/process-forms/pom.xml index fd2013485..2abbe5e88 100755 --- a/examples/components/process-forms/pom.xml +++ b/examples/components/process-forms/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/tasklist-angular/pom.xml b/examples/components/tasklist-angular/pom.xml index d559e761b..b4287a478 100755 --- a/examples/components/tasklist-angular/pom.xml +++ b/examples/components/tasklist-angular/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/tasklist-api/pom.xml b/examples/components/tasklist-api/pom.xml index 1bec813ea..835b0e187 100755 --- a/examples/components/tasklist-api/pom.xml +++ b/examples/components/tasklist-api/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/tasklist-backend/pom.xml b/examples/components/tasklist-backend/pom.xml index e6ba98d77..b7db31f00 100755 --- a/examples/components/tasklist-backend/pom.xml +++ b/examples/components/tasklist-backend/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/tasklist-reactive-backend/pom.xml b/examples/components/tasklist-reactive-backend/pom.xml index 311fef4e0..9a593bc44 100755 --- a/examples/components/tasklist-reactive-backend/pom.xml +++ b/examples/components/tasklist-reactive-backend/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/components/users/pom.xml b/examples/components/users/pom.xml index 37d1a59f8..93b1c54d7 100644 --- a/examples/components/users/pom.xml +++ b/examples/components/users/pom.xml @@ -7,7 +7,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 ../../pom.xml diff --git a/examples/pom.xml b/examples/pom.xml index f66b5be5a..c42f827f6 100755 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 taskpool-examples-root diff --git a/examples/scenarios/distributed-axon-server/camunda-webapp-application/pom.xml b/examples/scenarios/distributed-axon-server/camunda-webapp-application/pom.xml index fcae58282..4b6464abc 100755 --- a/examples/scenarios/distributed-axon-server/camunda-webapp-application/pom.xml +++ b/examples/scenarios/distributed-axon-server/camunda-webapp-application/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-distributed-axon-server - 2.1.3 + 2.1.4 example-distributed-axon-server-webapp-application diff --git a/examples/scenarios/distributed-axon-server/cockpit-application/application/pom.xml b/examples/scenarios/distributed-axon-server/cockpit-application/application/pom.xml index 5794f551a..4f4973224 100755 --- a/examples/scenarios/distributed-axon-server/cockpit-application/application/pom.xml +++ b/examples/scenarios/distributed-axon-server/cockpit-application/application/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-cockpit-root - 2.1.3 + 2.1.4 taskpool-example-cockpit diff --git a/examples/scenarios/distributed-axon-server/cockpit-application/backend/pom.xml b/examples/scenarios/distributed-axon-server/cockpit-application/backend/pom.xml index 57bec749d..8b8b183c1 100755 --- a/examples/scenarios/distributed-axon-server/cockpit-application/backend/pom.xml +++ b/examples/scenarios/distributed-axon-server/cockpit-application/backend/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-cockpit-root - 2.1.3 + 2.1.4 taskpool-example-cockpit-backend diff --git a/examples/scenarios/distributed-axon-server/cockpit-application/frontend/pom.xml b/examples/scenarios/distributed-axon-server/cockpit-application/frontend/pom.xml index 3f8568a89..fa3ea3cae 100755 --- a/examples/scenarios/distributed-axon-server/cockpit-application/frontend/pom.xml +++ b/examples/scenarios/distributed-axon-server/cockpit-application/frontend/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-cockpit-root - 2.1.3 + 2.1.4 taskpool-example-cockpit-frontend diff --git a/examples/scenarios/distributed-axon-server/cockpit-application/pom.xml b/examples/scenarios/distributed-axon-server/cockpit-application/pom.xml index f9ed7d406..62fef88c3 100755 --- a/examples/scenarios/distributed-axon-server/cockpit-application/pom.xml +++ b/examples/scenarios/distributed-axon-server/cockpit-application/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-distributed-axon-server - 2.1.3 + 2.1.4 taskpool-example-cockpit-root diff --git a/examples/scenarios/distributed-axon-server/pom.xml b/examples/scenarios/distributed-axon-server/pom.xml index 2cff8b001..87523616b 100755 --- a/examples/scenarios/distributed-axon-server/pom.xml +++ b/examples/scenarios/distributed-axon-server/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-root - 2.1.3 + 2.1.4 taskpool-example-scenario-distributed-axon-server diff --git a/examples/scenarios/distributed-axon-server/process-application/pom.xml b/examples/scenarios/distributed-axon-server/process-application/pom.xml index e78afcdd4..4bdd517d8 100755 --- a/examples/scenarios/distributed-axon-server/process-application/pom.xml +++ b/examples/scenarios/distributed-axon-server/process-application/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-distributed-axon-server - 2.1.3 + 2.1.4 example-distributed-axon-server-process-application diff --git a/examples/scenarios/distributed-axon-server/taskpool-application/pom.xml b/examples/scenarios/distributed-axon-server/taskpool-application/pom.xml index 7cb2fd23c..af2fd0fda 100755 --- a/examples/scenarios/distributed-axon-server/taskpool-application/pom.xml +++ b/examples/scenarios/distributed-axon-server/taskpool-application/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-distributed-axon-server - 2.1.3 + 2.1.4 example-distributed-axon-server-taskpool-application diff --git a/examples/scenarios/pom.xml b/examples/scenarios/pom.xml index 62f981b32..17a005dff 100755 --- a/examples/scenarios/pom.xml +++ b/examples/scenarios/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-examples-root - 2.1.3 + 2.1.4 taskpool-example-scenario-root diff --git a/examples/scenarios/single-node/pom.xml b/examples/scenarios/single-node/pom.xml index 075d462c2..94b304bfe 100755 --- a/examples/scenarios/single-node/pom.xml +++ b/examples/scenarios/single-node/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool taskpool-example-scenario-root - 2.1.3 + 2.1.4 taskpool-example-scenario-single-node diff --git a/pom.xml b/pom.xml index 0fed742ff..baa7d2e05 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 pom ${project.artifactId} diff --git a/taskpool/pom.xml b/taskpool/pom.xml index be1d943b4..42d50f0b3 100755 --- a/taskpool/pom.xml +++ b/taskpool/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 camunda-bpm-taskpool-root diff --git a/taskpool/taskpool-api/pom.xml b/taskpool/taskpool-api/pom.xml index 0afde994b..767609f64 100755 --- a/taskpool/taskpool-api/pom.xml +++ b/taskpool/taskpool-api/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-api diff --git a/taskpool/taskpool-core/pom.xml b/taskpool/taskpool-core/pom.xml index 72cae9e45..06738d777 100755 --- a/taskpool/taskpool-core/pom.xml +++ b/taskpool/taskpool-core/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-core diff --git a/taskpool/taskpool-event/pom.xml b/taskpool/taskpool-event/pom.xml index af39b5e82..9c0c1dcaf 100755 --- a/taskpool/taskpool-event/pom.xml +++ b/taskpool/taskpool-event/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-event diff --git a/view/mongo/pom.xml b/view/mongo/pom.xml index 20806f7fb..b0d4ff744 100755 --- a/view/mongo/pom.xml +++ b/view/mongo/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-view-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-view-mongo diff --git a/view/pom.xml b/view/pom.xml index dc152c15c..8651d86e3 100755 --- a/view/pom.xml +++ b/view/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool - 2.1.3 + 2.1.4 camunda-bpm-taskpool-view-root diff --git a/view/simple/pom.xml b/view/simple/pom.xml index 18200d50e..f7be13df7 100755 --- a/view/simple/pom.xml +++ b/view/simple/pom.xml @@ -5,7 +5,7 @@ io.holunda.taskpool camunda-bpm-taskpool-view-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-view-simple diff --git a/view/view-api/pom.xml b/view/view-api/pom.xml index 6bd3e202c..780d99457 100755 --- a/view/view-api/pom.xml +++ b/view/view-api/pom.xml @@ -6,7 +6,7 @@ io.holunda.taskpool camunda-bpm-taskpool-view-root - 2.1.3 + 2.1.4 camunda-bpm-taskpool-view-api