Skip to content

Commit

Permalink
DAT-18960: added Junit 5 dependencies, removed incompatible versions …
Browse files Browse the repository at this point in the history
…conflicting with parent-pom 0.5.0
  • Loading branch information
Mykhailo Savchenko committed Nov 21, 2024
1 parent 1f02bca commit 9192574
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@

<properties>
<liquibase.version>4.30.0</liquibase.version>
<spock-core.version>1.3-groovy-2.4</spock-core.version>
<spock-reports.version>1.8.0</spock-reports.version>
<groovy-all.version>2.4.21</groovy-all.version>
<sonar.tests>src/test/groovy</sonar.tests>
<junit.version>5.11.3</junit.version>
<junit-platform.version>1.11.3</junit-platform.version>
</properties>

<scm>
Expand Down Expand Up @@ -89,6 +88,36 @@
<version>1.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 9192574

Please sign in to comment.