I have fixed this for the eclipse project error issue for 1.0.1 as I
just needed to make the same change you did - comment out the
<geronimo.assemble>repository</geronimo.assemble> line (that is after
the library line), since specifying library implies repository.
For 1.1 I have created GERONIMO-1564 to fix it properly by changing the
property names and the assembly plugin.
Thanks,
John
David Jencks wrote:
There's a problem with part of this:
On Jan 31, 2006, at 3:37 AM, [EMAIL PROTECTED] wrote:
Author: jsisson
Date: Tue Jan 31 03:36:47 2006
New Revision: 373796
URL: http://svn.apache.org/viewcvs?rev=373796&view=rev
Log:
GERONIMO-1441 - comment out, consolidate or remove duplicate
dependencies that cause "Build path contains duplicate entry" errors
in eclipse 3.1.1 projects.
<snip>
<dependency>
<groupId>geronimo</groupId>
@@ -550,6 +551,7 @@
<version>${geronimo_spec_qname_version}</version>
<properties>
<geronimo.assemble>library</geronimo.assemble>
+ <geronimo.assemble>repository</geronimo.assemble>
</properties>
</dependency>
having two properties with the same name doesn't work. The dependency
ends up in either the library or the repository but not both.
I just fixed a bunch of these in GERONIMO-1541
I think we need each target dir to have a separate name, e.g.
<geronimo.assemble.library>true</geronimo.assemble.library>
thanks
david jencks