Skip to content

Commit

Permalink
library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasnogueira committed Dec 17, 2023
1 parent 1238878 commit 55f2068
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-execution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- 8088:8088
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.1] - 17-12-2023

## Changed
- Updated the following dependencies
- `maven-surefire-plugin -> 3.2.3`
- `restassured -> 5.4.0`
- `allure -> 2.25.0`
- `aspectj -> 1.9.21`
- `jackson-databind -> 2.16.0`

## [2.3.0] - 06-11-2023

## Changed
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@

<groupId>com.eliasogueira.credit</groupId>
<artifactId>restassured-complete-basic-example</artifactId>
<version>2.2.6-SNAPSHOT</version>
<version>2.3.1-SNAPSHOT</version>

<properties>
<java.version>17</java.version>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.1</maven-surefire-plugin.version>
<maven-surefire-plugin.version>3.2.3</maven-surefire-plugin.version>
<maven-failsafe-plugin.version>3.2.1</maven-failsafe-plugin.version>

<restassured.version>5.3.2</restassured.version>
<restassured.version>5.4.0</restassured.version>
<junit.jupiter.version>5.10.1</junit.jupiter.version>
<assertj.version>3.24.2</assertj.version>
<datafaker.version>2.0.2</datafaker.version>
<owner.version>1.0.12</owner.version>
<log4j.version>2.20.0</log4j.version>
<slf4j.version>2.0.9</slf4j.version>
<allure.version>2.24.0</allure.version>
<allure.version>2.25.0</allure.version>
<allure-maven.version>2.12.0</allure-maven.version>
<aspectj.version>1.9.20.1</aspectj.version>
<aspectj.version>1.9.21</aspectj.version>
<allure.cmd.download.url>
https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline
</allure.cmd.download.url>

<!-- Security override libraries -->
<commons-codec.version>1.16.0</commons-codec.version>
<jackson-databind.version>2.15.2</jackson-databind.version>
<jackson-databind.version>2.16.0</jackson-databind.version>
</properties>

<dependencies>
Expand Down

0 comments on commit 55f2068

Please sign in to comment.