Details
-
Type:
New Feature
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Won't Fix
-
Affects Version/s: None
-
Fix Version/s: 1.10
-
Labels:None
Description
To generate lib classpath entries for jar files not in maven repositories, I have added the following code to classpath.jelly locally (after processing of maven.eclipse.conclasspath property):
<u:tokenize var="libclasspaths" delim=",">${maven.eclipse.libclasspath}</u:tokenize>
<j:forEach var="libclasspath" items="${libclasspaths}" trim="true">
<classpathentry kind="lib" path="${libclasspath}"/>
</j:forEach>
jar files not in the maven repository should be added to project.xml using the standard maven jar override system.
The project should mantain the same set of dependencies both when built using maven than Eclipse, why should ypu need a dependency only when the project is built using eclipse?