Skip to content

Commit

Permalink
added junit5 / testcontainers
Browse files Browse the repository at this point in the history
dependency management
  • Loading branch information
fugerit79 committed Mar 24, 2024
1 parent a658ba2 commit 8f8ca77
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- junit-jupiter-version 5.10.2
- testcontainers-version 1.19.7

## [1.6.2] - 2024-03-24

### Changed
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ Main parent pom of fugerit-org projects.
| common-codec-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v1.16.1-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/commons-codec/commons-codec.svg)](https://central.sonatype.com/artifact/commons-codec/commons-codec) |
| dbcp-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v1.4-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/commons-dbcp/commons-dbcp.svg)](https://central.sonatype.com/artifact/commons-dbcp/commons-dbcp) |
| dbcp2-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v2.12.0-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.apache.commons/commons-dbcp2.svg)](https://central.sonatype.com/artifact/org.apache.commons/commons-dbcp2) |
| junit-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v4.13.2-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/junit/junit.svg)](https://central.sonatype.com/artifact/junit/junit) |
| junit-version (junit4) | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v4.13.2-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/junit/junit.svg)](https://central.sonatype.com/artifact/junit/junit) |
| testcontainers-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v1.19.7-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.testcontainers/testcontainers)](https://central.sonatype.com/artifact/org.testcontainers/testcontainers) |
| junit-jupiter-version (junit5) | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v5.10.2-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.junit.jupiter/junit-jupiter.svg)](https://central.sonatype.com/artifact/org.junit.jupiter/junit-jupiter) |
| testcontainers-core-version | testcontainers-version | [![Maven Central](https://img.shields.io/maven-central/v/org.testcontainers/testcontainers)](https://central.sonatype.com/artifact/org.testcontainers/testcontainers) |
| testcontainers-junit-version | testcontainers-version | [![Maven Central](https://img.shields.io/maven-central/v/org.testcontainers/testcontainers)](https://central.sonatype.com/artifact/org.testcontainers/testcontainers) |
| awaitility-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v4.2.1-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.awaitility/awaitility.svg)](https://central.sonatype.com/artifact/org.awaitility/awaitility) |
| hsqldb-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v2.7.2-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.hsqldb/hsqldb.svg)](https://central.sonatype.com/artifact/org.hsqldb/hsqldb) |
| fj-test-helper-version | ![fj-bom version](https://img.shields.io/badge/fj%20bom-v0.5.2-teal.svg) | [![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/fj-test-helper.svg)](https://central.sonatype.com/artifact/org.fugerit.java/fj-test-helper) |
Expand Down
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@
<dbcp2-version>2.12.0</dbcp2-version>
<junit-version>4.13.2</junit-version>
<awaitility-version>4.2.1</awaitility-version>
<testcontainers-version>1.19.7</testcontainers-version>
<junit-jupiter-version>5.10.2</junit-jupiter-version>
<jacoco-maven-plugin-version>0.8.11</jacoco-maven-plugin-version>
<testcontainers-core-version>${testcontainers-version}</testcontainers-core-version>
<testcontainers-junit-version>${testcontainers-version}</testcontainers-junit-version>
<hsqldb-version>2.7.2</hsqldb-version>
<fj-test-helper-version>0.5.2</fj-test-helper-version>
<common-compress-version>1.26.1</common-compress-version>
Expand Down Expand Up @@ -211,6 +216,25 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<version>${testcontainers-core-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers-junit-version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
Expand Down

0 comments on commit 8f8ca77

Please sign in to comment.