sbt-cucumber
sbt-cucumber copied to clipboard
Q: Use with SBT version 1.3.13
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)