You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2018/04/09 17:25:16 UTC

[archiva-redback-components-expression-evaluator] 05/29: move expression evaluator as a bundle

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 <ol...@apache.org>
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
martin_s@apache.org.