Skip to content

Commit

Permalink
added intex to publish on ci the fitnesse tests
Browse files Browse the repository at this point in the history
  • Loading branch information
smartrics committed Dec 18, 2012
1 parent fab8ed3 commit 4009b90
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
8 changes: 8 additions & 0 deletions etc/fitnesse-reports/index.html
@@ -0,0 +1,8 @@
<html>
<body>
<h1>FitNesse test results</h1>
<ul>
<li><a href="RestFixtureExtensionsTests.html">Rest Fixture Extensions Tests</a>
</ul>
</body>
</html>
23 changes: 23 additions & 0 deletions pom.xml
Expand Up @@ -158,6 +158,29 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>site</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/fitnesse-reports</outputDirectory>
<resources>
<resource>
<directory>etc/fitnesse-reports</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
Expand Down

0 comments on commit 4009b90

Please sign in to comment.