Ibexy I
Ibexy I

Reputation: 1143

How to install Cucumber-JVM on Eclipse

I have searched all over the internet but a newbie on java I cant figure out how to simply install Cucumber-jvm on Eclipse.

What files do I need to download? I already installed Eclipse. What do I need to do to get Cucumber-JVM on Eclipse?

Upvotes: 11

Views: 64020

Answers (5)

Bayram Binbir
Bayram Binbir

Reputation: 2227

Steps to Install Cucumber on Eclipse

Upvotes: 1

Chris
Chris

Reputation: 572

If you mean the Cucumber plugin for Eclipse you can do this by:

  1. Open Eclipse, Click Help → Install New Software.
  2. Click on the "Add" button at the right side of 'Work with' field.
  3. Give the Name (say, cucumber-eclipse) and input the URL 'https://cucumber.github.io/cucumber-eclipse/update-site' at Location field -> Click OK.
  4. Check the box 'Cucumber Eclipse Plugin'.
  5. Untick 'Contact all update sites during install...'.
  6. Click Next.
  7. Follow the instructions at the prompts.

Upvotes: 18

Marit
Marit

Reputation: 3026

You can find how to install Cucumber-jvm in the Cucumber documentation

In addition, you'll need the Eclipse plugin.

Upvotes: 0

Alter Hu
Alter Hu

Reputation: 739

Why didn't you try this plugin? I think it should be greater for your cucumber coding than the official plugin: BecauseCucumber

Installation steps are there: BecauseCucumber Installation

Upvotes: 1

TrueDub
TrueDub

Reputation: 5070

Cucumber-JVM isn't an Eclipse library or plugin. You can download it in a variety of ways (I find Maven the easiest), and include it in your code.

Upvotes: 1

Related Questions