Hi, I want to submit a small hack to the eclipse plug-in to allow
project references in the generation of the classpath.
It works like this:
- In the project dependencies add a property "eclipse.project" to the
dependency and it will be treated as an eclipse project, for example:
<dependencies>
<dependency>
<groupId>delfos</groupId>
<artifactId>delfos-ejb</artifactId>
<version>SNAPSHOT</version>
<properties>
<eclipse.project>true</eclipse.project>
</properties>
</dependency>
</dependencies>
Then the plug-in generates the .classpath like this:
<classpathentry kind="src" path="/delfos-ejb" />
This is very useful when you have sub-projects.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]