Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipse-dev] failing nightly build tests



The manifest.mf has been updated in HEAD.
Wassim.



                                                                           
             Jeff                                                          
             McAffer/Ottawa/IB                                             
             M@IBMCA                                                    To 
             Sent by:                  eclipse-dev@xxxxxxxxxxx             
             eclipse-dev-admin                                          cc 
             @eclipse.org                                                  
                                                                   Subject 
                                       [eclipse-dev] failing nightly build 
             12/13/2003 10:42          tests                               
             PM                                                            
                                                                           
                                                                           
             Please respond to                                             
                eclipse-dev                                                
                                                                           
                                                                           





The nightly build tests are failing to run because the META-INF/MANIFEST.MF
file in org.eclipse.update.configurator plugin lists an incorrect activator
class.  The current one in HEAD reads

Bundle-Activator:
 org.eclipse.update.internal.configurator.ConfigurationActivator

but the ConfigurationActivator class is in the package
org.eclipse.update.configurator (no internal).

I believe this code was being refactored and perhaps was only part of the
changes were released.  Either way, since this is the bit of code that
actually installs all of the other plugins, not much will happen if it is
not found.

Could someone with Update commit rights update the MANIFEST.MF file as to
look like:

Bundle-Activator:
 org.eclipse.update.configurator.ConfigurationActivator

Of course, individuals wanting to run the nightly build can do this change
themselves and it seems to run fine (for a simple sniff test).

Jeff




Back to the top