In eclipse 3.0, there are various types of classpath entries. For
example, If I want to include a classes directory from another eclipse
project in my workspace, I can right click on my project and choose
"Add Class Folder" from the java build path. This adds an entry in
the projects .classpath referencing classpathentry kind="lib"
When I run the eclipse plugin on my project, specifying the same
classes folder in maven.eclipse.classpath.include, The folder will
appear as an eclipse dependency, but with kind="src".
I popped open classpath.jelly and see that the kind="src" is hardcoded:
<!-- add extra directories to be included in the classpath -->
<j:forEach var="res" items="${maven.eclipse.classpath.include.split}">
<classpathentry kind="src" path="${res}"/>
</j:forEach>
Is there any way to generate a classpath entry of kind="lib"?
Thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]