Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm just using Maven to build my project and also my eclipse project settings. The eclipse:eclipse target generates the .classpath file for eclipse regarding the dependencies and other project settings like source directory, test source directory and so on. Now I added the Maven failsafe plugin and defined a <testSourceDirectory>/test/integration</testSourceDirectory> beside my normal (junit) test directory.

  • test/unit -> contains my junit test cases which are executes in maven "test" phase
  • test/integration -> contains my integration (maybe also junit) test cases, executed in maven phase "integration-test".

Works fine BUT eclipse plugin won't consider my <testSourceDirectory> and won't add it as entry into my .claspath file :-( Is there a way to manipulate the eclispe plugin to add the classpath entry from the failsafe plugin? I already the following:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <configuration>
                <additionalConfig>
                    <file>
                        <name>.classpath</name>
                        <content>
                            <![CDATA[<classpathentry kind="src" path="test/integration" output="build/compile/test-classes"/>]]>
                        </content>
                    </file>
                </additionalConfig>
            </configuration>
        </plugin>

But this results in overidden .classpath file whith the above entry as single line.. :-(

Has someone a good idea to slve it?

cheers, Yellomen

share|improve this question

2 Answers

The easiest way would something like:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <configuration>
                <additionalClasspathEntries>
                    <ClasspathEntry>
                        <kind>src</kind>
                        <path>test/integration</path>
                    </ClasspathEntry>
                </additionalClasspathEntries>
            </configuration>
        </plugin>

But this doesn'T work...

share|improve this answer

Have you tried specifying your integration dir in sourceIncludes as described here?

share|improve this answer
No, because I want to configure different root folders for unit and integration test where "unit" or "integration" shall not be partof the package. To use <sourceIncludes> means to configure <build><testSources>test</testSources></build> which allows only one folder.. – Yellomen Feb 9 '11 at 14:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.