Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpcomponents Wiki" for change notification.
The following page has been changed by SebastianBazley: http://wiki.apache.org/HttpComponents/OSGiMetaData The comment on the change is: Recover OSGi example deleted from Commons Wiki New page: === Configuring OSGi metatdata via the jar plugin === {{{ <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Bundle-SymbolicName>org.apache.commons.lang</Bundle-SymbolicName> <Bundle-License>http://www.apache.org/licenses/LICENSE-2.0.txt</Bundle-License> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-Name>Apache Commons Lang Bundle</Bundle-Name> <Bundle-Vendor>${project.organization.name}</Bundle-Vendor> <Bundle-Version>${project.version}</Bundle-Version> <Export-Package> org.apache.commons.lang;version=${project.version}, org.apache.commons.lang.builder;version=${project.version}, org.apache.commons.lang.enum;version=${project.version}, org.apache.commons.lang.enums;version=${project.version}, org.apache.commons.lang.exception;version=${project.version}, org.apache.commons.lang.math;version=${project.version}, org.apache.commons.lang.mutable;version=${project.version}, org.apache.commons.lang.text;version=${project.version}, org.apache.commons.lang.time;version=${project.version} </Export-Package> <Import-Package> org.apache.commons.lang;version=${project.version}, org.apache.commons.lang.builder;version=${project.version}, org.apache.commons.lang.enum;version=${project.version}, org.apache.commons.lang.enums;version=${project.version}, org.apache.commons.lang.exception;version=${project.version}, org.apache.commons.lang.math;version=${project.version}, org.apache.commons.lang.mutable;version=${project.version}, org.apache.commons.lang.text;version=${project.version}, org.apache.commons.lang.time;version=${project.version} </Import-Package> </manifestEntries> </archive> </configuration> </plugin> }}} --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
