Personally I think its a bad idea having all this MANIFEST stuff hardcoded - since it just makes errors during release more likely. A good example was BeanUtils 1.7.0 where the manifest version number wasn't updated and has caused alot of confusion and quite a few bug tickets.
Niall On Tue, Jul 29, 2008 at 2:44 PM, <[EMAIL PROTECTED]> wrote: > Author: ebourg > Date: Tue Jul 29 06:44:08 2008 > New Revision: 680694 > > URL: http://svn.apache.org/viewvc?rev=680694&view=rev > Log: > Generated a new Ant build with Maven 2 + minor tweaks > Removed the Maven 1 build > Updated the manifest used by Ant to include the OSGI stuff > <snip> > Modified: commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF > URL: > http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF?rev=680694&r1=680693&r2=680694&view=diff > ============================================================================== > --- commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF (original) > +++ commons/proper/cli/branches/cli-1.x/src/conf/MANIFEST.MF Tue Jul 29 > 06:44:08 2008 > @@ -1,4 +1,23 @@ > -Implementation-Title: Apache Commons CLI > -Specification-Title: Apache Commons CLI > -Specification-Vendor: Apache Software Foundation > -Specification-Version: 1.1 > +Manifest-Version: 1.0 > +Implementation-Title: Commons CLI > +Implementation-Vendor: The Apache Software Foundation > +Implementation-Vendor-Id: org.apache > +Implementation-Version: 1.2-SNAPSHOT > +Specification-Title: Commons CLI > +Specification-Vendor: The Apache Software Foundation > +Specification-Version: 1.2-SNAPSHOT > +X-Compile-Source-JDK: 1.3 > +X-Compile-Target-JDK: 1.3 > +Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt > +Import-Package: org.apache.commons.cli;version="1.2.0.SNAPSHOT" > +Bnd-LastModified: 1217335218750 > +Export-Package: org.apache.commons.cli;version="1.2.0.SNAPSHOT" > +Bundle-Version: 1.2.0.SNAPSHOT > +Bundle-Name: Commons CLI > +Bundle-Description: Commons CLI provides a simple API for presenting, > + processing and validating a command line interface. > +Bundle-DocURL: http://commons.apache.org/cli/ > +Bundle-ManifestVersion: 2 > +Bundle-Vendor: The Apache Software Foundation > +Bundle-SymbolicName: org.apache.commons.cli > +Tool: Bnd-0.0.238 </snip> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
