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-expression-evaluator.git
commit f8ab0350b6711303c65edaf3de835643ec9722a9 Author: Olivier Lamy <[email protected]> AuthorDate: Mon Apr 23 20:45:13 2012 +0000 move expression evaluator as a bundle git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-components/trunk@1329432 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9bd39be..398b0f9 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ <artifactId>expression-evaluator</artifactId> <version>2.0-SNAPSHOT</version> <name>Expression Evaluator Components</name> - <packaging>jar</packaging> + <packaging>bundle</packaging> <url>http://archiva.apache.org/redback/components/${project.artifactId}</url> @@ -53,4 +53,26 @@ </dependency> </dependencies> + <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.evaluator;;version=${project.version}, + org.apache.archiva.redback.components.evaluator.sources;version=${project.version} + </Export-Package> + <Import-Package> + org.codehaus.plexus.util + </Import-Package> + </instructions> + </configuration> + </plugin> + </plugins> + </build> + </project> -- To stop receiving notification emails like this one, please contact [email protected].
