Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 488 Bytes

install.md

File metadata and controls

24 lines (17 loc) · 488 Bytes

Installation

Dependency

SBT

To use Cucumber Scala in your project, add the following line to your build.sbt:

libraryDependencies += "io.cucumber" %% "cucumber-scala" % "8.25.1" % Test

Maven

To use Cucumber Scala in your project, add the following dependency to your pom.xml:

<dependency>
    <groupId>io.cucumber</groupId>
    <artifactId>cucumber-scala_2.13</artifactId>
    <version>8.25.1</version>
    <scope>test</scope>
</dependency>