You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by jc...@apache.org on 2006/11/13 20:22:35 UTC

svn commit: r474447 - in /directory/sandbox/jconlon/osgi-commons: jzlib/ jzlib/pom.xml pom.xml

Author: jconlon
Date: Mon Nov 13 11:22:34 2006
New Revision: 474447

URL: http://svn.apache.org/viewvc?view=rev&rev=474447
Log:
adding wrapping subproject for jzlib

Added:
    directory/sandbox/jconlon/osgi-commons/jzlib/   (with props)
    directory/sandbox/jconlon/osgi-commons/jzlib/pom.xml
Modified:
    directory/sandbox/jconlon/osgi-commons/pom.xml

Propchange: directory/sandbox/jconlon/osgi-commons/jzlib/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Nov 13 11:22:34 2006
@@ -0,0 +1 @@
+target

Added: directory/sandbox/jconlon/osgi-commons/jzlib/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/jconlon/osgi-commons/jzlib/pom.xml?view=auto&rev=474447
==============================================================================
--- directory/sandbox/jconlon/osgi-commons/jzlib/pom.xml (added)
+++ directory/sandbox/jconlon/osgi-commons/jzlib/pom.xml Mon Nov 13 11:22:34 2006
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+ 
+  <parent>
+    <groupId>org.apache.directory.osgi.commons</groupId>
+    <artifactId>build</artifactId>
+    <version>1.0.6-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>jzlib-osgi</artifactId>
+  <name>${pom.artifactId} bundle</name>
+  <version>1.0.7</version>
+  <description>
+    This bundle simply wraps jzlib-${pom.version}.jar.
+  </description>
+  <packaging>bundle</packaging>
+  <dependencies>
+    <dependency>
+     <groupId>com.jcraft</groupId>
+      <artifactId>jzlib</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+            <Export-Package>!META-INF.*,*</Export-Package>
+            <Import-Package>!*</Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Modified: directory/sandbox/jconlon/osgi-commons/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/jconlon/osgi-commons/pom.xml?view=diff&rev=474447&r1=474446&r2=474447
==============================================================================
--- directory/sandbox/jconlon/osgi-commons/pom.xml (original)
+++ directory/sandbox/jconlon/osgi-commons/pom.xml Mon Nov 13 11:22:34 2006
@@ -22,6 +22,7 @@
     <module>antlr</module>
     <module>commons-collections</module>
     <module>commons-lang</module>
+    <module>jzlib</module>
   </modules>
   
 </project>