SahilWadhwa / fitnesse-launcher-maven-plugin

Automatically exported from code.google.com/p/fitnesse-launcher-maven-plugin
0 stars 0 forks source link

Config to allow arbitrary SymLink creation, not just for the test suite files #31

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently (1.4.0-SNAPSHOT) the default config option of 
'<createSymLink>true</createSymLink>' will create a FitNesse SymLink directly 
from its working directory to the test suite under src/test/fitnesse.

If there are other project specific FitNesse wiki pages currently they have to 
be copied into /target/fitnesse/FitNesseRoot using 
maven-resources-plugin:copy-resources.

Perhaps we could have some config similar to:
  <plugin>
      <groupId>uk.co.javahelp.fitnesse</groupId>
      <artifactId>fitnesse-launcher-maven-plugin</artifactId>
      <configuration>
          <suite>MyTestSuite</suite>
          <SymLinks>
              <SymLink>
                  <linkName>JavaExample</linkName>
                  <linkPath>src/test/fitnesse/JavaExample</linkPath>
              </SymLink>
          </SymLinks>
      </configuration>
  </plugin>

Original issue reported on code.google.com by stewart@javahelp.co.uk on 9 Jun 2014 at 11:22

GoogleCodeExporter commented 9 years ago
See also Issue #33

Original comment by stewart@javahelp.co.uk on 4 Jul 2014 at 9:33