Hi,

I have a project that has two child modules and a parent module.
The child modules both use the same plugin, but have different plugin
dependencies. 
If I run each child module separately, everything buids fine. If I build
the child modules as part of the parent modules build, it fails due to
the second modules dependencies being set to the first modules
dependencies.

ie (see below), if module 1 builds first and then module 2, module 2
won't be able to find any of the bar classes

Any thoughts on how to get around this?

Module 1:
      <plugins>
         <plugin>
            <groupId>example</groupId>
            <artifactId>example-plugin</artifactId>
            ....
        
Module 2:
      <plugins>
         <plugin>
            <groupId>example</groupId>
            <artifactId>example-plugin</artifactId>
            <dependencies>
               <dependency>
                  <groupId>BAR</groupId>
                  <artifactId>BAR</artifactId>
               <dependency>
            </dependencies>
            ....


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

Reply via email to