Skip to content

Instantly share code, notes, and snippets.

@timander
Created September 20, 2010 21:32
Show Gist options
  • Save timander/588690 to your computer and use it in GitHub Desktop.
Save timander/588690 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<dependencies>
</dependencies>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<classpathScope>test</classpathScope>
<mainClass>fitlibrary.batch.FitLibraryRunner</mainClass>
<arguments>
<argument>-suiteName</argument>
<argument>FrontPage.MySuite</argument>
<argument>-fitNesseDiry</argument>
<argument>${basedir}/../fitnesse</argument>
<argument>-resultsDiry</argument>
<argument>${project.build.directory}/fitnesse</argument>
<argument>-port</argument>
<argument>9006</argument>
<argument>-showPasses</argument>
<argument>true</argument>
</arguments>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment