Skip to content

Instantly share code, notes, and snippets.

@benelog
Created August 27, 2012 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benelog/3486575 to your computer and use it in GitHub Desktop.
Save benelog/3486575 to your computer and use it in GitHub Desktop.
Maven code
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>add-acceptancetest-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
<configuration>
<sources>
<source>${basedir}/src/acceptance-test/java</source>
<source>${basedir}/src/test-support/java</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment