You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/06/07 21:59:49 UTC

svn commit: r1347766 - in /commons/proper/io/trunk: pom.xml src/changes/changes.xml

Author: ggregory
Date: Thu Jun  7 19:59:49 2012
New Revision: 1347766

URL: http://svn.apache.org/viewvc?rev=1347766&view=rev
Log:
[IO-333] Export OSGi packages at version 1.x in addition to 2.x.

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

Modified: commons/proper/io/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/pom.xml?rev=1347766&r1=1347765&r2=1347766&view=diff
==============================================================================
--- commons/proper/io/trunk/pom.xml (original)
+++ commons/proper/io/trunk/pom.xml Thu Jun  7 19:59:49 2012
@@ -234,6 +234,21 @@ file comparators, endian transformation 
     <commons.release.2.desc>(requires JDK 1.5+)</commons.release.2.desc>
     <commons.jira.id>IO</commons.jira.id>
     <commons.jira.pid>12310477</commons.jira.pid>
+    <commons.osgi.export>
+        <!-- Explicit list of packages from IO 1.4 -->
+        org.apache.commons.io;
+        org.apache.commons.io.comparator;
+        org.apache.commons.io.filefilter;
+        org.apache.commons.io.input;
+        org.apache.commons.io.output;version=1.4.9999;-noimport:=true,
+        <!-- Same list plus * for new packages -->
+        org.apache.commons.io;
+        org.apache.commons.io.comparator;
+        org.apache.commons.io.filefilter;
+        org.apache.commons.io.input;
+        org.apache.commons.io.output;
+        org.apache.commons.io.*;version=${project.version};-noimport:=true
+    </commons.osgi.export>
   </properties>
 
   <build>

Modified: commons/proper/io/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/changes/changes.xml?rev=1347766&r1=1347765&r2=1347766&view=diff
==============================================================================
--- commons/proper/io/trunk/src/changes/changes.xml (original)
+++ commons/proper/io/trunk/src/changes/changes.xml Thu Jun  7 19:59:49 2012
@@ -47,6 +47,9 @@ The <action> type attribute can be add,u
   <body>
     <!-- The release date is the date RC is cut -->
     <release version="2.4" date="2012-TDB-TDB" description="">
+      <action issue="IO-333" dev="ggregory" type="add" due-to="fmeschbe">
+        Export OSGi packages at version 1.x in addition to 2.x.
+      </action>            
       <action issue="IO-320" dev="ggregory" type="add">
         Add XmlStreamReader support for UTF-32.
       </action>