Skip to content

Commit

Permalink
Merge pull request #236 from itbhp/fix-cucumber-java
Browse files Browse the repository at this point in the history
fix junit dependency for java cucumber project
  • Loading branch information
mklose authored Oct 18, 2023
2 parents 3338286 + 67ba287 commit a7479d8
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions java/cucumber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,24 @@
<cucumber.version>5.1.2</cucumber.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<junit-jupiter.version>5.5.2</junit-jupiter.version>
<junit-jupiter.version>5.8.2</junit-jupiter.version>
<junit-platform.version>1.8.1</junit-platform.version>
<minimum.maven.version>3.6.0</minimum.maven.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit-jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
Expand All @@ -35,8 +46,7 @@
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -47,7 +57,6 @@
</dependency>
</dependencies>


<build>
<plugins>
<plugin>
Expand Down

0 comments on commit a7479d8

Please sign in to comment.