Skip to content

Commit

Permalink
upgraded dependencies
Browse files Browse the repository at this point in the history
assertj-core -> 3.24.2
  fixed deprecation warnings
jaxb
  api  -> 2.3.1
  core -> 2.3.0.1
  impl -> 2.3.8
  • Loading branch information
arolfes authored and gitgoodjhe committed Sep 28, 2023
1 parent e38a127 commit 6750202
Show file tree
Hide file tree
Showing 21 changed files with 31 additions and 12 deletions.
1 change: 1 addition & 0 deletions common/taskana-common-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions common/taskana-common-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions common/taskana-common-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
1 change: 1 addition & 0 deletions common/taskana-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
1 change: 1 addition & 0 deletions history/taskana-loghistory-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions history/taskana-simplehistory-rest-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-cdi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-core-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-spring-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions lib/taskana-test-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
<version.arquillian.managed.wildfly>3.0.1.Final</version.arquillian.managed.wildfly>

<!-- test dependencies -->
<version.assertj>3.24.2</version.assertj>
<version.archunit>1.1.0</version.archunit>
<version.equalsverifier>3.15.2</version.equalsverifier>
<version.openpojo>0.9.1</version.openpojo>
Expand All @@ -97,7 +98,9 @@

<!-- Excel to DMN converter dependencies -->
<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>

<!-- database driver versions -->
Expand Down
1 change: 1 addition & 0 deletions rest/taskana-rest-spring-example-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions rest/taskana-rest-spring-example-wildfly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 1 addition & 0 deletions rest/taskana-rest-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
7 changes: 4 additions & 3 deletions routing/taskana-routing-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${version.jaxb}</version>
<version>${version.jaxb-api}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>${version.jaxb}</version>
<version>${version.jaxb-core}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${version.jaxb}</version>
<version>${version.jaxb-impl}</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
Expand Down Expand Up @@ -79,6 +79,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${version.assertj}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 6750202

Please sign in to comment.