Just a note that I see some Class-Path attributes in the MANIFEST.MF of yoko jars. yoko-spec-corba-1.0.jar, yoko-rmi-spec.jar, bcel-5.2.jar, jakarta-regexp.jar are required for yoko-rmi-impl.jar yoko-spec-corba-1.0.jar for yoko-rmi-spec.jar yoko-spec-corba-1.0.jar, yoko-rmi-spec.jar for yoko-core.jar As we discussed in HARMONY-6072, these will cause some "missed entry" and "duplicated entry" errors in (jdtcorebuilder) Eclipse Unit Test. The error can be removed by jar downloading and bootclasspath reordering. We can also pass the test by eliminate the Class-path attributes in the jar files, similar as the commit r749061.
On Fri, Feb 27, 2009 at 4:52 PM, <[email protected]> wrote: > Author: tonywu > Date: Fri Feb 27 08:52:26 2009 > New Revision: 748435 > > URL: http://svn.apache.org/viewvc?rev=748435&view=rev > Log: > Apply patch for HARMONY-6102 [build] incorrect path of yoko in > bootclasspath.properties > > Modified: > harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties > > Modified: > harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties > URL: > http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties?rev=748435&r1=748434&r2=748435&view=diff > > ============================================================================== > --- harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties > (original) > +++ harmony/enhanced/classlib/trunk/depends/files/bootclasspath.properties > Fri Feb 27 08:52:26 2009 > @@ -183,10 +183,10 @@ > > # Apache Yoko > # Yoko has a dependency on Jakata BCEL > -bootclasspath.41=yoko-1.0-SNAPSHOT-20080304/yoko.jar > -bootclasspath.42=yoko-1.0-SNAPSHOT-20080304/yoko-core.jar > -bootclasspath.43=yoko-1.0-SNAPSHOT-20080304/yoko-rmi-spec.jar > -bootclasspath.44=yoko-1.0-SNAPSHOT-20080304/yoko-rmi-impl.jar > +bootclasspath.41=yoko-1.0/yoko.jar > +bootclasspath.42=yoko-1.0/yoko-core.jar > +bootclasspath.43=yoko-1.0/yoko-rmi-spec.jar > +bootclasspath.44=yoko-1.0/yoko-rmi-impl.jar > bootclasspath.45=bcel-5.2/bcel-5.2.jar > > bootclasspath.46=pack200.jar > > >
