Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 532 Bytes

README.textile

File metadata and controls

29 lines (25 loc) · 532 Bytes

INSTALLATION

git clone git://github.com/dcrec1/rspec-maven-plugin.git
cd rspec-maven-plugin
mvn install

CONFIGURATION

Just put this in your pom.xml:


<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>rspec-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>test</id>
            <phase>test</phase>
            <goals>
                <goal>spec</goal>
            </goals>
        </execution>
    </executions>
</plugin>