Hi,
I upgrade to Maven b6, and now I can't bundle the jars into the war.
In Maven b5 I have to put something like that:
<dependency>
<id>commons-configuration</id>
<version>1.0-dev</version>
<url>http://jakarta.apache.org/commons/</url>
<metaEntries>
<metaEntry>j2ee.war.bundle.jar:true</metaEntry>
</metaEntries>
</dependency>
Later I found that the name of the metaEntry was changed to war.bundle.jar
Now seems that the way is using properties, in the CVS HEAD the plugin.jelly use the
method getProperty instead the method getMetaEntry.
In the xdocs says that the way is:
<dependency>
<id>jarid</id>
<version>jarversion</version>
<properties>
<classloader>war.bundle.jar:true</classloader>
</properties>
</dependency>
But I tried with not success
Any idea
Thanks
Edgar