Shabar
Shabar

Reputation: 2823

IntelliJ plugin for cucumber-scala

I am running Cucumber scala project in IntelliJ

IntelliJ IDEA - 13.0.2

I couldn't find separate plugin called cucumber for scala

In my project I am getting cannot resolve message for cucumber as below

enter image description here

Could see below errors as well

enter image description here

Existing plugins installed

enter image description here

What could be the solution

Cheers

Upvotes: 0

Views: 1504

Answers (1)

Christian
Christian

Reputation: 4593

You are missing dependencies for cucumber-core and cucumber-scala, please have a look at the documentation and add them to your build.sbt file.

Update: There is a newer version available for sbt-cucumber-plugin (0.8.0): https://github.com/skipoleschris/xsbt-cucumber-plugin. Maybe that solves your problems.

Did you try the gen-idea plugin to create the IntelliJ IDEA project files ?

Upvotes: 1

Related Questions