This is an automated email from the ASF dual-hosted git repository. martin_s pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/archiva-redback-components-spring-utils.git
commit 871f51ea0c7889b321ed5fdd9f1a43d14862d84d Author: Olivier Lamy <[email protected]> AuthorDate: Fri Apr 13 21:31:12 2012 +0000 spring-utils is now a bundle git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-components/trunk@1325962 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 38 ++++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 396c2f1..bfd3a2e 100644 --- a/pom.xml +++ b/pom.xml @@ -29,6 +29,7 @@ <version>2.0-SNAPSHOT</version> <name>Spring Utils Goodies</name> <description>Contains some spring goodies.</description> + <packaging>bundle</packaging> <url>http://archiva.apache.org/redback/components/${project.artifactId}</url> @@ -121,12 +122,37 @@ </dependencies> - <developers> - <developer> - <email>[email protected]</email> - <name>Olivier Lamy</name> - </developer> - </developers> + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <Bundle-SymbolicName>org.apache.archiva.common.plexusbridge</Bundle-SymbolicName> + <Bundle-Version>${project.version}</Bundle-Version> + <Export-Package> + org.apache.archiva.redback.components.springutils;;version=${project.version}, + org.apache.archiva.redback.components.springutils.plexusshim;version=${project.version} + </Export-Package> + <Import-Package> + javax.inject, + org.codehaus.plexus, + org.codehaus.plexus.classworlds, + org.codehaus.plexus.classworlds.realm, + org.codehaus.plexus.component.repository.exception, + org.springframework.stereotype, + org.apache.commons.lang, + org.springframework.beans.factory.support, + org.springframework.context, + org.springframework.web.context.support, + org.slf4j;resolution:=optional + </Import-Package> + </instructions> + </configuration> + </plugin> + </plugins> + </build> <reporting> <plugins> -- To stop receiving notification emails like this one, please contact [email protected].
