Skip to content

Commit

Permalink
[1.4.2] - 2023-09-23
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Sep 23, 2023
1 parent 1f6a15b commit 740df5a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.2] - 2023-09-23

### Added

- org.awaitility test dependency
- [Sample jdk compatibility check workflow on branch develop](.github/workflows/build_maven_compatibility.yml)

## [1.4.1] - 2023-09-23

### Added
Expand Down
10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>

<version>1.4.1</version>
<version>1.4.2</version>
<packaging>pom</packaging>

<name>Fugerit Java Platform BOM</name>
Expand Down Expand Up @@ -97,6 +97,7 @@
<dbcp-version>1.4</dbcp-version> <!-- dbcp should be avoided, use dbcp2 -->
<dbcp2-version>2.9.0</dbcp2-version>
<junit-version>4.13.2</junit-version>
<awaitility-version>4.2.0</awaitility-version>
<hsqldb-version>2.7.2</hsqldb-version>
<fj-test-helper-version>0.5.0</fj-test-helper-version>
<common-compress-version>1.24.0</common-compress-version>
Expand Down Expand Up @@ -192,6 +193,13 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>${awaitility-version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
Expand Down

0 comments on commit 740df5a

Please sign in to comment.