diff --git a/common/taskana-common-data/pom.xml b/common/taskana-common-data/pom.xml index 8445527e58..85e2c87683 100644 --- a/common/taskana-common-data/pom.xml +++ b/common/taskana-common-data/pom.xml @@ -44,6 +44,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/common/taskana-common-logging/pom.xml b/common/taskana-common-logging/pom.xml index b567b28877..12e25ea885 100644 --- a/common/taskana-common-logging/pom.xml +++ b/common/taskana-common-logging/pom.xml @@ -40,6 +40,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/common/taskana-common-test/pom.xml b/common/taskana-common-test/pom.xml index 51f1f69d49..54c8025bb4 100644 --- a/common/taskana-common-test/pom.xml +++ b/common/taskana-common-test/pom.xml @@ -150,6 +150,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/common/taskana-common/pom.xml b/common/taskana-common/pom.xml index e44249a0d3..5cf0059860 100644 --- a/common/taskana-common/pom.xml +++ b/common/taskana-common/pom.xml @@ -54,6 +54,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/history/taskana-loghistory-provider/pom.xml b/history/taskana-loghistory-provider/pom.xml index df08616581..43f7b4bd78 100644 --- a/history/taskana-loghistory-provider/pom.xml +++ b/history/taskana-loghistory-provider/pom.xml @@ -49,6 +49,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/history/taskana-simplehistory-rest-spring/pom.xml b/history/taskana-simplehistory-rest-spring/pom.xml index a3e70865fa..7447a94bfd 100644 --- a/history/taskana-simplehistory-rest-spring/pom.xml +++ b/history/taskana-simplehistory-rest-spring/pom.xml @@ -78,6 +78,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-cdi/pom.xml b/lib/taskana-cdi/pom.xml index 7890d8571a..362aa43185 100644 --- a/lib/taskana-cdi/pom.xml +++ b/lib/taskana-cdi/pom.xml @@ -63,6 +63,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-core-test/pom.xml b/lib/taskana-core-test/pom.xml index 507cb64866..f9c809760e 100644 --- a/lib/taskana-core-test/pom.xml +++ b/lib/taskana-core-test/pom.xml @@ -45,6 +45,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithAfterSpiAccTest.java b/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithAfterSpiAccTest.java index c2135fec32..ffc121bea6 100644 --- a/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithAfterSpiAccTest.java +++ b/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithAfterSpiAccTest.java @@ -267,9 +267,9 @@ void should_RollbackTransaction_When_SpiThrowsAnException() throws Exception { assertThatThrownBy(call) .isInstanceOf(SystemException.class) - .getCause() // unwrap the "wrap" within "call" + .cause() // unwrap the "wrap" within "call" .hasMessage("service provider '%s' threw an exception", ExceptionThrower.class.getName()) - .getCause() // unwrap the "wrap" from the service provider manager + .cause() // unwrap the "wrap" from the service provider manager .hasMessage("I AM THE EXCEPTION THROWER (*_*)"); Task persistentTask = taskService.getTask(task.getId()); diff --git a/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithBeforeSpiAccTest.java b/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithBeforeSpiAccTest.java index b1b0a32d6e..76e005e74f 100644 --- a/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithBeforeSpiAccTest.java +++ b/lib/taskana-core-test/src/test/java/acceptance/task/requestchanges/RequestChangesWithBeforeSpiAccTest.java @@ -300,9 +300,9 @@ void should_RollbackTransaction_When_SpiThrowsAnException() throws Exception { assertThatThrownBy(call) .isInstanceOf(SystemException.class) - .getCause() // unwrap the "wrap" within "call" + .cause() // unwrap the "wrap" within "call" .hasMessage("service provider '%s' threw an exception", ExceptionThrower.class.getName()) - .getCause() // unwrap the "wrap" from the service provider manager + .cause() // unwrap the "wrap" from the service provider manager .hasMessage("I AM THE EXCEPTION THROWER (*_*)"); Task persistentTask = taskService.getTask(task.getId()); diff --git a/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithAfterSpiAccTest.java b/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithAfterSpiAccTest.java index a9cd02faa2..9817c24e18 100644 --- a/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithAfterSpiAccTest.java +++ b/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithAfterSpiAccTest.java @@ -268,9 +268,9 @@ void should_RollbackTransaction_When_SpiThrowsAnException() throws Exception { assertThatThrownBy(call) .isInstanceOf(SystemException.class) - .getCause() // unwrap the "wrap" within "call" + .cause() // unwrap the "wrap" within "call" .hasMessage("service provider '%s' threw an exception", ExceptionThrower.class.getName()) - .getCause() // unwrap the "wrap" from the service provider manager + .cause() // unwrap the "wrap" from the service provider manager .hasMessage("I AM THE EXCEPTION THROWER (*_*)"); Task persistentTask = taskService.getTask(task.getId()); diff --git a/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithBeforeSpiAccTest.java b/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithBeforeSpiAccTest.java index 16886dd109..b6ae524eb4 100644 --- a/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithBeforeSpiAccTest.java +++ b/lib/taskana-core-test/src/test/java/acceptance/task/requestreview/RequestReviewWithBeforeSpiAccTest.java @@ -301,9 +301,9 @@ void should_RollbackTransaction_When_SpiThrowsAnException() throws Exception { assertThatThrownBy(call) .isInstanceOf(SystemException.class) - .getCause() // unwrap the "wrap" within "call" + .cause() // unwrap the "wrap" within "call" .hasMessage("service provider '%s' threw an exception", ExceptionThrower.class.getName()) - .getCause() // unwrap the "wrap" from the service provider manager + .cause() // unwrap the "wrap" from the service provider manager .hasMessage("I AM THE EXCEPTION THROWER (*_*)"); Task persistentTask = taskService.getTask(task.getId()); diff --git a/lib/taskana-core/pom.xml b/lib/taskana-core/pom.xml index 4f399e2ec2..aaa3a26b9e 100644 --- a/lib/taskana-core/pom.xml +++ b/lib/taskana-core/pom.xml @@ -60,6 +60,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-spring-example/pom.xml b/lib/taskana-spring-example/pom.xml index 2e05bc10c0..5b0da25c3e 100644 --- a/lib/taskana-spring-example/pom.xml +++ b/lib/taskana-spring-example/pom.xml @@ -55,6 +55,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-spring/pom.xml b/lib/taskana-spring/pom.xml index 0f6660a1d4..c5bff1a717 100644 --- a/lib/taskana-spring/pom.xml +++ b/lib/taskana-spring/pom.xml @@ -64,6 +64,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/lib/taskana-test-api/pom.xml b/lib/taskana-test-api/pom.xml index e73447eb58..6a4dd170ca 100644 --- a/lib/taskana-test-api/pom.xml +++ b/lib/taskana-test-api/pom.xml @@ -92,6 +92,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/pom.xml b/pom.xml index b3d8c93dc0..e091ba5724 100644 --- a/pom.xml +++ b/pom.xml @@ -83,6 +83,7 @@ 3.0.1.Final + 3.24.2 1.1.0 3.15.2 0.9.1 @@ -97,7 +98,9 @@ 0.3.0 - 2.3.0 + 2.3.1 + 2.3.0.1 + 2.3.8 1.1.1 diff --git a/rest/taskana-rest-spring-example-common/pom.xml b/rest/taskana-rest-spring-example-common/pom.xml index f4cec00802..46a87f2fd5 100644 --- a/rest/taskana-rest-spring-example-common/pom.xml +++ b/rest/taskana-rest-spring-example-common/pom.xml @@ -87,6 +87,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/rest/taskana-rest-spring-example-wildfly/pom.xml b/rest/taskana-rest-spring-example-wildfly/pom.xml index c0903746ac..e1fed5dbdc 100644 --- a/rest/taskana-rest-spring-example-wildfly/pom.xml +++ b/rest/taskana-rest-spring-example-wildfly/pom.xml @@ -99,6 +99,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/rest/taskana-rest-spring/pom.xml b/rest/taskana-rest-spring/pom.xml index fab74a42c8..38bac9f88c 100644 --- a/rest/taskana-rest-spring/pom.xml +++ b/rest/taskana-rest-spring/pom.xml @@ -100,6 +100,7 @@ org.assertj assertj-core + ${version.assertj} test diff --git a/routing/taskana-routing-rest/pom.xml b/routing/taskana-routing-rest/pom.xml index a133317ea1..fcb4cd030e 100644 --- a/routing/taskana-routing-rest/pom.xml +++ b/routing/taskana-routing-rest/pom.xml @@ -34,17 +34,17 @@ javax.xml.bind jaxb-api - ${version.jaxb} + ${version.jaxb-api} com.sun.xml.bind jaxb-core - ${version.jaxb} + ${version.jaxb-core} com.sun.xml.bind jaxb-impl - ${version.jaxb} + ${version.jaxb-impl} javax.activation @@ -79,6 +79,7 @@ org.assertj assertj-core + ${version.assertj} test