Re: How do I share test classes between projects?

2007-03-09 Thread Wayne Fay
You need to use type "test-jar": http://maven.apache.org/guides/mini/guide-attached-tests.html Wayne On 3/9/07, Dave Rathnow <[EMAIL PROTECTED]> wrote: I'm new to Maven and have been working with if for a few days. I've been reading through the documentation but haven't found the answer to

Re: How do I share test classes between projects?

2007-03-09 Thread Dan Tran
move your common test classes to another project but place them in main source ( ie src/main/java) other project can refencence it via dependency mechanism to run the test -D On 3/9/07, Dave Rathnow <[EMAIL PROTECTED]> wrote: I'm new to Maven and have been working with if for a few days.

How do I share test classes between projects?

2007-03-09 Thread Dave Rathnow
I'm new to Maven and have been working with if for a few days. I've been reading through the documentation but haven't found the answer to this question. I have two projects A and B with testing classes in both. The test classes in B Inherit from classes in A and they also use fixtures f