Added hamcrest back

This commit is contained in:
Marcin Grzejszczak
2023-09-19 15:07:29 +02:00
parent 7b4c999a13
commit aeaa2fad8d
2 changed files with 11 additions and 0 deletions

View File

@@ -52,6 +52,7 @@
<awaitility.version>4.2.0</awaitility.version>
<artemis.version>2.26.0</artemis.version>
<testcontainers.version>1.17.5</testcontainers.version>
<hamcrest.version>2.2</hamcrest.version>
<!-- We need to have compatibility with Gradle -->
<groovy.version>4.0.0</groovy.version>
@@ -491,6 +492,11 @@
<artifactId>junit-jupiter</artifactId>
<version>${testcontainers.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>${hamcrest.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

View File

@@ -95,6 +95,11 @@
<artifactId>assertj-core</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>