You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2012/12/27 19:28:24 UTC

svn commit: r1426283 - in /commons/proper/compress/trunk: pom.xml src/changes/changes.xml

Author: bodewig
Date: Thu Dec 27 18:28:24 2012
New Revision: 1426283

URL: http://svn.apache.org/viewvc?rev=1426283&view=rev
Log:
COMPRESS-199 XZ for Java doesn't provide an OSGi bundle, mark the dependency as optional

Modified:
    commons/proper/compress/trunk/pom.xml
    commons/proper/compress/trunk/src/changes/changes.xml

Modified: commons/proper/compress/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/pom.xml?rev=1426283&r1=1426282&r2=1426283&view=diff
==============================================================================
--- commons/proper/compress/trunk/pom.xml (original)
+++ commons/proper/compress/trunk/pom.xml Thu Dec 27 18:28:24 2012
@@ -151,6 +151,15 @@ These include: bzip2, gzip, pack200, xz 
           </archive>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <Import-Package>org.tukaani.xz;resolution:=optional</Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 

Modified: commons/proper/compress/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/changes/changes.xml?rev=1426283&r1=1426282&r2=1426283&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/changes/changes.xml (original)
+++ commons/proper/compress/trunk/src/changes/changes.xml Thu Dec 27 18:28:24 2012
@@ -63,6 +63,12 @@ The <action> type attribute can be add,u
               due-to="Jukka Zitting">
         TarArchiveEntry now has a method to verify its checksum.
       </action>
+      <action type="fix" date="2012-12-27" issue="COMPRESS-199"
+              due-to="Jukka Zitting">
+        XZ for Java doesn't provide an OSGi bundle.  Compress'
+        dependency on it has now been marked optional so Compress
+        itself can still be used in an OSGi context.
+      </action>
     </release>
     <release version="1.4.1" date="2012-05-23"
              description="Release 1.4.1">