hi dan,

the build-helpder-maven-plugin works fine to me.
But currently I have to configure it for all my submodule projects. How can I configure the plug in in my top-level project for all my modules?

Regards
Ingo

My current configuration in the module projects:
<build><plugins><plugin>
     <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
          <executions>
               <execution>
                       <id>add-test-source</id>
                       <phase>generate-test-sources</phase>
                       <goals>
                           <goal>add-test-source</goal>
                       </goals>
                       <configuration>
                           <sources>
                               <source>
                                   ${project.build.directory}/test-src
                               </source>
                           </sources>
                       </configuration>
                   </execution>
              </executions>
</plugin></plugins></build>



dan tran schrieb:
use build-helper-maven-plugin to attach additional test source directory to
maven.

If you generate your test source in a custome plugin, you can directly do it
so
thru maven-project's component.

-D


On 5/19/06, Ingo Düppe <[EMAIL PROTECTED]> wrote:

Hi,
how can I integrate a generated test source folder like
"target/test-scr" in the build process of maven 2.0?
Regards,
Ingo

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to