This tag is for maven 1 eclipse plug-in and used for defining dependencies
as eclipse projects.
By default, the dependencies defined in the POM would be in jars format.
However, they can be projects in the eclipse workspace. If a dependency is
an eclipse project, a property needs to be added to that dependency to
indicate so.
<dependency>
<groupId>group</groupId>
<artifactId>artifact</artifactId>
<version>version</version>
<properties>
<eclipse.dependency>true</eclipse.dependency>
</properties>
</dependency>
This indicates that the dependency is another project in the workspace. Note
that the name of the referenced project is the artifactId.
The inverse also works. If you have included extra jars that shouldn't be in
the eclipse classpath, then you can set eclipse.dependency=false
On 9/28/07, Wayne Fay <[EMAIL PROTECTED]> wrote:
>
> For those of us unfamiliar with M1 (or who are simply getting old and
> forgetful), can you remind us what this tag does for you?
>
> Wayne
>
> On 9/28/07, Yan Huang <[EMAIL PROTECTED]> wrote:
> > Hello,
> >
> > On maven 1, we have this tag <eclipse.dependency> for a dependency
> >
> > <dependency>
> > <groupId>mygroupID</groupId>
> > <artifactId>myexmapleID</artifactId>
> > <version>1.0.0.0</version>
> > <type>jar</type>
> > <properties>
> > <zip.bundle>true</zip.bundle>
> > <eclipse.dependency>true</eclipse.dependency>
> > </properties>
> > </dependency>
> >
> > Is there equivalent stuff on maven 2?
> >
> > Thanks
> > Yan
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>