Skip to content

masterthought/CukeSteps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CukeSteps

=========

Steps Navigator for cucumber-JVM projects

Cuke Steps is a maven plugin that helps you by creating a library of all the available Cucumber steps
in a specific java project.
It currently locates all available steps in .java or .feature files.
After compilation phase, it generates a cukes.html report which can be found in the target/ folder

![Screenshot] (https://raw.github.com/masterthought/CukeSteps/master/md/cuke_suggestions.png "Suggestions from existing steps")

How to use it?

Introduce the following in the plugins section of your pom.xml:

<plugin>
            <groupId>net.masterthought</groupId>
            <artifactId>cukesteps-maven-plugin</artifactId>
            <version>1.0</version>
            <executions>
                <execution>
                    <phase>compile</phase>
                    <goals>
                        <goal>cukesteps</goal>
                    </goals>
                </execution>
            </executions>
</plugin>

If you don't want to integrate this plugin to your project but search another project instead, then you can add the following:

<configuration>
     <directory>/DIRECTORY/TO/PARSE</directory>
</configuration>

underneath the goals section of this plugin.

©2012 - MasterThought.net

About

Steps Navigator for cucumber-JVM projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages