I specified "provided" as scope - it still generates a dependency in 
eclipse...

Since you miss the <version> in your dependencies, i guess you're using 
<dependencyManagement> in the parent poms - I tried that too and it works...

What do you get in your .classpath file in projectA? You should have something 
along the lines of:
        <classpathentry kind="src" path="/projectB"/>

On Thursday 27 April 2006 16:10, Sebastien Cesbron wrote:
> Do you have your dependencies declared as "provided" ?
>
> I mean in project A I have
>   <dependencies>
>     <dependency>
>       <groupId>project</groupId>
>       <artifactId>projectB</artifactId>
>       <scope>provided</scope>
>     </dependency>
>   </dependencies>
>
> and in project B
>   <dependencies>
>     <dependency>
>       <groupId>project</groupId>
>       <artifactId>projectC</artifactId>
>       <scope>provided</scope>
>     </dependency>
>   </dependencies>
>
> If I use the goal eclipse:eclipse on project A parents it works only
> if my libraries are not in provided scope
>
> [...]

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

Reply via email to