Skip to content

Commit

Permalink
chore(pom.xml): remove unused JUnit Jupiter dependencies and Hamcrest…
Browse files Browse the repository at this point in the history
… dependency

The JUnit Jupiter dependencies (junit-jupiter-api, junit-jupiter-engine, junit-jupiter-params) and the Hamcrest dependency (hamcrest-all) were removed from the pom.xml file. These dependencies were not being used in the project and were unnecessary. Removing them improves the clarity and maintainability of the project's dependencies.
  • Loading branch information
jandroav committed Nov 16, 2023
1 parent 2d342d6 commit 6b7a9da
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
<properties>
<liquibase.version>4.25.0</liquibase.version>
<azure-cosmos.version>4.52.0</azure-cosmos.version>
<jupiter.version>5.10.1</jupiter.version>
<jupiter.surefire.version>1.3.2</jupiter.surefire.version>
<mockito-core.version>4.11.0</mockito-core.version>
<mockito-junit-jupiter.version>4.11.0</mockito-junit-jupiter.version>
Expand All @@ -50,30 +49,6 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down

0 comments on commit 6b7a9da

Please sign in to comment.