sbt / sbt-cucumber

Cucumber plugin for SBT.
Other
20 stars 14 forks source link

Q: Use with SBT version 1.3.13 #26

Open rubienr opened 1 year ago

rubienr commented 1 year ago

Are there any objections to use the cucumber-plugin 0.3.1 with SBT 1.3.13?

The note in RADME.md says

Note The latest version of the plugin is built using SBT 1.2.8.

but it seems to work with SBT 1.3.13 (Scala 2.13.5) as follows:

plugins.sbt

addSbtPlugin("com.waioeka.sbt" % "cucumber-plugin" % "0.3.1")

build.sbt

libraryDependencies ++= Seq (
  "io.cucumber" %% "cucumber-scala" % "8.13.1" % Test
)

enablePlugins(CucumberPlugin)