upgraded dependencies
assertj-core -> 3.24.2 fixed deprecation warnings jaxb api -> 2.3.1 core -> 2.3.0.1 impl -> 2.3.8
This commit is contained in:
parent
e38a12733c
commit
67502025a5
|
@ -44,6 +44,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -150,6 +150,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -54,6 +54,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -78,6 +78,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -267,9 +267,9 @@ public class RequestChangesWithAfterSpiAccTest {
|
||||||
|
|
||||||
assertThatThrownBy(call)
|
assertThatThrownBy(call)
|
||||||
.isInstanceOf(SystemException.class)
|
.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())
|
.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 (*_*)");
|
.hasMessage("I AM THE EXCEPTION THROWER (*_*)");
|
||||||
|
|
||||||
Task persistentTask = taskService.getTask(task.getId());
|
Task persistentTask = taskService.getTask(task.getId());
|
||||||
|
|
|
@ -300,9 +300,9 @@ public class RequestChangesWithBeforeSpiAccTest {
|
||||||
|
|
||||||
assertThatThrownBy(call)
|
assertThatThrownBy(call)
|
||||||
.isInstanceOf(SystemException.class)
|
.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())
|
.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 (*_*)");
|
.hasMessage("I AM THE EXCEPTION THROWER (*_*)");
|
||||||
|
|
||||||
Task persistentTask = taskService.getTask(task.getId());
|
Task persistentTask = taskService.getTask(task.getId());
|
||||||
|
|
|
@ -268,9 +268,9 @@ public class RequestReviewWithAfterSpiAccTest {
|
||||||
|
|
||||||
assertThatThrownBy(call)
|
assertThatThrownBy(call)
|
||||||
.isInstanceOf(SystemException.class)
|
.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())
|
.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 (*_*)");
|
.hasMessage("I AM THE EXCEPTION THROWER (*_*)");
|
||||||
|
|
||||||
Task persistentTask = taskService.getTask(task.getId());
|
Task persistentTask = taskService.getTask(task.getId());
|
||||||
|
|
|
@ -301,9 +301,9 @@ public class RequestReviewWithBeforeSpiAccTest {
|
||||||
|
|
||||||
assertThatThrownBy(call)
|
assertThatThrownBy(call)
|
||||||
.isInstanceOf(SystemException.class)
|
.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())
|
.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 (*_*)");
|
.hasMessage("I AM THE EXCEPTION THROWER (*_*)");
|
||||||
|
|
||||||
Task persistentTask = taskService.getTask(task.getId());
|
Task persistentTask = taskService.getTask(task.getId());
|
||||||
|
|
|
@ -60,6 +60,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -55,6 +55,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -64,6 +64,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -92,6 +92,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
5
pom.xml
5
pom.xml
|
@ -83,6 +83,7 @@
|
||||||
<version.arquillian.managed.wildfly>3.0.1.Final</version.arquillian.managed.wildfly>
|
<version.arquillian.managed.wildfly>3.0.1.Final</version.arquillian.managed.wildfly>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
|
<version.assertj>3.24.2</version.assertj>
|
||||||
<version.archunit>1.1.0</version.archunit>
|
<version.archunit>1.1.0</version.archunit>
|
||||||
<version.equalsverifier>3.15.2</version.equalsverifier>
|
<version.equalsverifier>3.15.2</version.equalsverifier>
|
||||||
<version.openpojo>0.9.1</version.openpojo>
|
<version.openpojo>0.9.1</version.openpojo>
|
||||||
|
@ -97,7 +98,9 @@
|
||||||
|
|
||||||
<!-- Excel to DMN converter dependencies -->
|
<!-- Excel to DMN converter dependencies -->
|
||||||
<version.dmn-xlsx-converter>0.3.0</version.dmn-xlsx-converter>
|
<version.dmn-xlsx-converter>0.3.0</version.dmn-xlsx-converter>
|
||||||
<version.jaxb>2.3.0</version.jaxb>
|
<version.jaxb-api>2.3.1</version.jaxb-api>
|
||||||
|
<version.jaxb-core>2.3.0.1</version.jaxb-core>
|
||||||
|
<version.jaxb-impl>2.3.8</version.jaxb-impl>
|
||||||
<version.javax.activation>1.1.1</version.javax.activation>
|
<version.javax.activation>1.1.1</version.javax.activation>
|
||||||
|
|
||||||
<!-- database driver versions -->
|
<!-- database driver versions -->
|
||||||
|
|
|
@ -87,6 +87,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -99,6 +99,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -100,6 +100,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -34,17 +34,17 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.xml.bind</groupId>
|
<groupId>javax.xml.bind</groupId>
|
||||||
<artifactId>jaxb-api</artifactId>
|
<artifactId>jaxb-api</artifactId>
|
||||||
<version>${version.jaxb}</version>
|
<version>${version.jaxb-api}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.sun.xml.bind</groupId>
|
<groupId>com.sun.xml.bind</groupId>
|
||||||
<artifactId>jaxb-core</artifactId>
|
<artifactId>jaxb-core</artifactId>
|
||||||
<version>${version.jaxb}</version>
|
<version>${version.jaxb-core}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.sun.xml.bind</groupId>
|
<groupId>com.sun.xml.bind</groupId>
|
||||||
<artifactId>jaxb-impl</artifactId>
|
<artifactId>jaxb-impl</artifactId>
|
||||||
<version>${version.jaxb}</version>
|
<version>${version.jaxb-impl}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.activation</groupId>
|
<groupId>javax.activation</groupId>
|
||||||
|
@ -79,6 +79,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
|
<version>${version.assertj}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in New Issue