Skip to content

Commit

Permalink
Working as-is. Run 'mvn clean install' to see
Browse files Browse the repository at this point in the history
results.  Look under target/trinidad for test
results.

This configuration cannot be changed much at all.
Do NOT try to modify JUnit dependency, fitnesse,
fitlibrary, etc., as I've found that nearly anything
but the magic combination of the three versions works.
  • Loading branch information
klauern committed Dec 18, 2009
1 parent bb36614 commit ad33913
Showing 1 changed file with 84 additions and 88 deletions.
172 changes: 84 additions & 88 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,111 +1,107 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>klauer</groupId>
<artifactId>fitnesse-mvn</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>fitnesse-mvn</name>
<modelVersion>4.0.0</modelVersion>
<groupId>klauer</groupId>
<artifactId>fitnesse-mvn</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>fitnesse-mvn</name>

<properties>

<fitnesse.version>20081201</fitnesse.version>
<properties>
<fitnesse.version>20091121</fitnesse.version>
<fitlibrary.version>20081102</fitlibrary.version>
<trinidad.version>1.0.8</trinidad.version>
</properties>
<trinidad.version>1.0.9</trinidad.version>
</properties>

<repositories>
<repository>
<id>neuri-maven</id>
<url>http://maven.neuri.com</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
<repositories>
<repository>
<id>codehaus</id>
<url>http://repository.codehaus.org</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>neuri-maven</id>
<url>http://maven.neuri.com</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<!-- <repository>
<id>codehaus</id>
<url>http://repository.codehaus.org</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</repository>
-->
</repositories>
<pluginRepositories>
<pluginRepository>
<id>neuri-maven</id>
<url>http://maven.neuri.com/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
<id>neuri-maven</id>
<name>Trinidad Fitnesse Plugin</name>
<url>http://maven.neuri.com/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>

</pluginRepositories>

<dependencies>
<dependencies>
<dependency>
<groupId>org.fitnesse</groupId>
<artifactId>fitnesse</artifactId>
<version>${fitnesse.version}</version>
<type>jar</type>
<scope>provided</scope>
<groupId>org.fitnesse</groupId>
<artifactId>fitnesse</artifactId>
<version>${fitnesse.version}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.fitnesse</groupId>
<artifactId>fitlibrary</artifactId>
<version>${fitlibrary.version}</version>
<type>jar</type>
<scope>provided</scope>
<groupId>org.fitnesse</groupId>
<artifactId>fitlibrary</artifactId>
<version>${fitlibrary.version}</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.neuri.tdd</groupId>
<artifactId>fitnesserunner</artifactId>
<version>${trinidad.version}</version>
<type>jar</type>
<scope>test</scope>
<groupId>com.neuri.tdd</groupId>
<artifactId>fitnesserunner</artifactId>
<version>${trinidad.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencies>

<build>
<build>
<plugins>
<plugin>
<artifactId>maven-trinidad-plugin</artifactId>
<version>${trinidad.version}</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run-tests</goal>
</goals>
<configuration>
<testEngine>slim</testEngine>
<testRepositoryType>fitnesse</testRepositoryType>
<testRepositoryUri>${basedir}/src/main/fitnesse</testRepositoryUri>
<breakBuildOnFailure>true</breakBuildOnFailure>
<tests>
<test>FitNesse.UserGuide.TwoMinuteExample</test>
</tests>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-trinidad-plugin</artifactId>
<version>${trinidad.version}</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>run-tests</goal>
</goals>
<configuration>
<testEngine>slim</testEngine>
<testRepositoryType>fitnesse</testRepositoryType>
<testRepositoryUri>${basedir}/src/main/fitnesse/</testRepositoryUri>
<breakBuildOnFailure>true</breakBuildOnFailure>
<tests>
<test>FitNesse.UserGuide.TwoMinuteExample</test>
</tests>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

</build>
</build>
</project>

0 comments on commit ad33913

Please sign in to comment.