I was hoping for something like this (which doesn't work BTW :-)
// maven.xml
<project xmlns:maven="jelly:maven">
<goal name="integration-test">
<maven:set plugin="maven-test-plugin" property="maven.test.src" value="${basedir}/integration-test" />
<maven:set plugin="maven-test-plugin" property="maven.test.dest" value="${maven.build.dir}/integration-test-classes" />
<attainGoal name="test:test" />
</goal>
</project>
Any ideas?
Cheers, -Ralph.
On 02.03.2005, at 19:02, dan tran wrote:
Ralph,
I would add another project to house your integration test cases. The source of the testcase must stay in the main source directory. (not the unit test src)
After that, use jelly/java to drive your integration in maven.xml
-D
On Wed, 2 Mar 2005 17:42:31 +0100, Ralph P�llath <[EMAIL PROTECTED]> wrote:Hi,
In addition to my unit tests, I have some integration tests which I'd like to be able to run separately (they require a database to be available, etc).
What's the preferred way to do this with maven?
Thanks, -Ralph.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
