Modified: servicemix/smx4/bundles/trunk/commons-configuration-1.4/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-configuration-1.4/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-configuration-1.4/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-configuration-1.4/pom.xml Thu Jan 20 
14:35:44 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.servicemix.bundles</groupId>
         <artifactId>bundles-pom</artifactId>
-        <version>5</version>
+        <version>6-SNAPSHOT</version>
         <relativePath>../bundles-pom/pom.xml</relativePath> 
     </parent>
 
@@ -32,37 +32,7 @@
     <version>1.4_3-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            Commons Configuration provides a generic configuration interface 
which enables a Java application to read
-            configuration data from a variety of sources. Commons 
Configuration provides typed access to single, and
-            multi-valued configuration parameters as demonstrated by the 
following code:
-
-                Double double = config.getDouble("number");
-                Integer integer = config.getInteger("number");
-
-            Configuration parameters may be loaded from the following sources:
-
-            * Properties files
-            * XML documents
-            * Windows INI files
-            * Property list files (plist)
-            * JNDI
-            * JDBC Datasource
-            * System properties
-            * Applet parameters
-            * Servlet parameters
-
-            Different configuration sources can be mixed using a 
ConfigurationFactory and a CompositeConfiguration.
-            Additional sources of configuration parameters can be created by 
using custom configuration objects.
-            This customization can be achieved by extending 
AbstractConfiguration or AbstractFileConfiguration.
-
-        SEE ALSO
-            http://commons.apache.org/configuration/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>commons-configuration</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-configuration-1.4/src/main/resources/OSGI-INF/bundle.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-configuration-1.4/src/main/resources/OSGI-INF/bundle.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-configuration-1.4/src/main/resources/OSGI-INF/bundle.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-configuration-1.4/src/main/resources/OSGI-INF/bundle.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,29 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    Commons Configuration provides a generic configuration interface which 
enables a Java application to read
+    configuration data from a variety of sources. Commons Configuration 
provides typed access to single, and
+    multi-valued configuration parameters as demonstrated by the following 
code:
+
+        Double double = config.getDouble("number");
+        Integer integer = config.getInteger("number");
+
+    Configuration parameters may be loaded from the following sources:
+
+        * Properties files
+        * XML documents
+        * Windows INI files
+        * Property list files (plist)
+        * JNDI
+        * JDBC Datasource
+        * System properties
+        * Applet parameters
+        * Servlet parameters
+
+    Different configuration sources can be mixed using a ConfigurationFactory 
and a CompositeConfiguration.
+    Additional sources of configuration parameters can be created by using 
custom configuration objects.
+    This customization can be achieved by extending AbstractConfiguration or 
AbstractFileConfiguration.
+
+SEE ALSO
+    http://commons.apache.org/configuration/
\ No newline at end of file

Modified: servicemix/smx4/bundles/trunk/commons-csv-1.0/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-csv-1.0/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-csv-1.0/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-csv-1.0/pom.xml Thu Jan 20 14:35:44 
2011
@@ -21,9 +21,10 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.servicemix.bundles</groupId>
-      <artifactId>bundles-pom</artifactId>
-      <version>4</version>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>6-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.servicemix.bundles</groupId>
@@ -31,22 +32,7 @@
     <version>1.0-r706899_5-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            Commons CSV was started to unify a common and simple interface for 
reading and writing CSV files under an
-            ASL license. It has been bootstrapped by a code donation from 
Netcetera in Switzerland. There are three
-            pre-existing BSD compatible CSV parsers which this component will 
hopefully make redundant:
-
-            * Skife CSV
-            * Open CSV
-            * Genjava CSV
-
-        SEE ALSO
-            http://commons.apache.org/sandbox/csv/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>org.apache.commons</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-csv-1.0/src/main/resources/OSGI-INF/bundle.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-csv-1.0/src/main/resources/OSGI-INF/bundle.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-csv-1.0/src/main/resources/OSGI-INF/bundle.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-csv-1.0/src/main/resources/OSGI-INF/bundle.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,14 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    Commons CSV was started to unify a common and simple interface for reading 
and writing CSV files under an
+    ASL license. It has been bootstrapped by a code donation from Netcetera in 
Switzerland. There are three
+    pre-existing BSD compatible CSV parsers which this component will 
hopefully make redundant:
+
+        * Skife CSV
+        * Open CSV
+        * Genjava CSV
+
+SEE ALSO
+    http://commons.apache.org/sandbox/csv/
\ No newline at end of file

Modified: servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/pom.xml Thu Jan 20 
14:35:44 2011
@@ -21,9 +21,10 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.servicemix.bundles</groupId>
-      <artifactId>bundles-pom</artifactId>
-      <version>4</version>
+        <groupId>org.apache.servicemix.bundles</groupId>
+        <artifactId>bundles-pom</artifactId>
+        <version>6-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.servicemix.bundles</groupId>
@@ -31,43 +32,7 @@
     <version>1.2.2_7-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            Many Apache projects support interaction with a relational 
database. Creating a new connection for each user
-            can be time consuming (often requiring multiple seconds of clock 
time), in order to perform a database
-            transaction that might take milliseconds. Opening a connection per 
user can be unfeasible in a
-            publicly-hosted Internet application where the number of 
simultaneous users can be very large. Accordingly,
-            developers often wish to share a "pool" of open connections 
between all of the application's current users.
-            The number of users actually performing a request at any given 
time is usually a very small percentage of
-            the total number of active users, and during request processing is 
the only time that a database connection
-            is required. The application itself logs into the DBMS, and 
handles any user account issues internally.
-
-            There are several Database Connection Pools already available, 
both within Apache products and elsewhere.
-            This Commons package provides an opportunity to coordinate the 
efforts required to create and maintain an
-            efficient, feature-rich package under the ASF license.
-
-            The commons-dbcp package relies on code in the commons-pool 
package to provide the underlying object pool
-            mechanisms that it utilizes.
-
-            DBCP now comes in two different versions, one to support JDBC 3 
and one to support JDBC 4.
-            Here is how it works:
-
-            * DBCP 1.4 compiles and runs under JDK 1.6 only (JDBC 4)
-            * DBCP 1.3 compiles and runs under JDK 1.4-1.5 only (JDBC 3)
-
-            DBCP 1.4 binaries should be used by applications running under JDK 
1.6.
-
-            DBCP 1.3 should be used when running under JDK 1.4 or 1.5.
-
-            There is no difference in the codebase supporting these two 
versions, other than that the code implementing
-            methods added to support JDBC 4 has been filtered out of the DBCP 
1.3 sources.
-
-        SEE ALSO
-            http://commons.apache.org/dbcp/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>commons-dbcp</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/src/main/resources/OSGI-INF/bundles.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/src/main/resources/OSGI-INF/bundles.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/src/main/resources/OSGI-INF/bundles.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-dbcp-1.2.2/src/main/resources/OSGI-INF/bundles.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,35 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    Many Apache projects support interaction with a relational database. 
Creating a new connection for each user
+    can be time consuming (often requiring multiple seconds of clock time), in 
order to perform a database
+    transaction that might take milliseconds. Opening a connection per user 
can be unfeasible in a
+    publicly-hosted Internet application where the number of simultaneous 
users can be very large. Accordingly,
+    developers often wish to share a "pool" of open connections between all of 
the application's current users.
+    The number of users actually performing a request at any given time is 
usually a very small percentage of
+    the total number of active users, and during request processing is the 
only time that a database connection
+    is required. The application itself logs into the DBMS, and handles any 
user account issues internally.
+
+    There are several Database Connection Pools already available, both within 
Apache products and elsewhere.
+    This Commons package provides an opportunity to coordinate the efforts 
required to create and maintain an
+    efficient, feature-rich package under the ASF license.
+
+    The commons-dbcp package relies on code in the commons-pool package to 
provide the underlying object pool
+    mechanisms that it utilizes.
+
+    DBCP now comes in two different versions, one to support JDBC 3 and one to 
support JDBC 4.
+    Here is how it works:
+
+        * DBCP 1.4 compiles and runs under JDK 1.6 only (JDBC 4)
+        * DBCP 1.3 compiles and runs under JDK 1.4-1.5 only (JDBC 3)
+
+    DBCP 1.4 binaries should be used by applications running under JDK 1.6.
+
+    DBCP 1.3 should be used when running under JDK 1.4 or 1.5.
+
+    There is no difference in the codebase supporting these two versions, 
other than that the code implementing
+    methods added to support JDBC 4 has been filtered out of the DBCP 1.3 
sources.
+
+SEE ALSO
+    http://commons.apache.org/dbcp/
\ No newline at end of file

Modified: servicemix/smx4/bundles/trunk/commons-digester-1.8/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-digester-1.8/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-digester-1.8/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-digester-1.8/pom.xml Thu Jan 20 
14:35:44 2011
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.servicemix.bundles</groupId>
         <artifactId>bundles-pom</artifactId>
-        <version>5</version>
+        <version>6-SNAPSHOT</version>
         <relativePath>../bundles-pom/pom.xml</relativePath>        
     </parent>
 
@@ -32,34 +32,7 @@
     <version>1.8_3-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            Many projects read XML configuration files to provide 
initialization of various Java objects within the
-            system. There are several ways of doing this, and the Digester 
component was designed to provide a common
-            implementation that can be used in many different projects.
-
-            Basically, the Digester package lets you configure an XML -> Java 
object mapping module, which triggers
-            certain actions called rules whenever a particular pattern of 
nested XML elements is recognized. A rich set
-            of predefined rules is available for your use, or you can also 
create your own.
-            Advanced features of Digester include:
-
-            * Ability to plug in your own pattern matching engine, if the 
standard one is not sufficient for your
-              requirements.
-            * Optional namespace-aware processing, so that you can define 
rules that are relevant only to a particular
-              XML namespace.
-            * Encapsulation of Rules into RuleSets that can be easily and 
conveniently reused in more than one
-              application that requires the same type of processing.
-
-            Starting from release 2.1, the Digester supports Java5 Annotations 
definition of rules improving
-            maintainability of both Java code and XML documents, since rules 
are now defined in POJOs and Digester
-            parser instances can be generated at run-time, avoiding manual 
updates.
-
-        SEE ALSO
-            http://commons.apache.org/digester/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>commons-digester</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,26 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    Many projects read XML configuration files to provide initialization of 
various Java objects within the
+    system. There are several ways of doing this, and the Digester component 
was designed to provide a common
+    implementation that can be used in many different projects.
+
+    Basically, the Digester package lets you configure an XML -> Java object 
mapping module, which triggers
+    certain actions called rules whenever a particular pattern of nested XML 
elements is recognized. A rich set
+    of predefined rules is available for your use, or you can also create your 
own.
+    Advanced features of Digester include:
+
+        * Ability to plug in your own pattern matching engine, if the standard 
one is not sufficient for your
+          requirements.
+        * Optional namespace-aware processing, so that you can define rules 
that are relevant only to a particular
+          XML namespace.
+        * Encapsulation of Rules into RuleSets that can be easily and 
conveniently reused in more than one
+          application that requires the same type of processing.
+
+    Starting from release 2.1, the Digester supports Java5 Annotations 
definition of rules improving
+    maintainability of both Java code and XML documents, since rules are now 
defined in POJOs and Digester
+    parser instances can be generated at run-time, avoiding manual updates.
+
+SEE ALSO
+    http://commons.apache.org/digester/
\ No newline at end of file

Modified: servicemix/smx4/bundles/trunk/commons-httpclient-3.1/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-httpclient-3.1/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-httpclient-3.1/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-httpclient-3.1/pom.xml Thu Jan 20 
14:35:44 2011
@@ -23,7 +23,8 @@
     <parent>
            <groupId>org.apache.servicemix.bundles</groupId>
            <artifactId>bundles-pom</artifactId>
-           <version>4</version>
+           <version>6-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.servicemix.bundles</groupId>
@@ -31,24 +32,7 @@
     <version>3.1_6-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            The Hyper-Text Transfer Protocol (HTTP) is perhaps the most 
significant protocol used on the Internet today.
-            Web services, network-enabled appliances and the growth of network 
computing continue to expand the role of
-            the HTTP protocol beyond user-driven web browsers, while 
increasing the number of applications that require
-            HTTP support.
-
-            Designed for extension while providing robust support for the base 
HTTP protocol, the HttpComponents may be
-            of interest to anyone building HTTP-aware client and server 
applications such as web browsers, web spiders,
-            HTTP proxies, web service transport libraries, or systems that 
leverage or extend the HTTP protocol for
-            distributed communication.
-
-        SEE ALSO
-            http://hc.apache.org/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>commons-httpclient</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-httpclient-3.1/src/main/resources/OSGI-INF/bundle.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-httpclient-3.1/src/main/resources/OSGI-INF/bundle.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-httpclient-3.1/src/main/resources/OSGI-INF/bundle.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-httpclient-3.1/src/main/resources/OSGI-INF/bundle.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,16 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    The Hyper-Text Transfer Protocol (HTTP) is perhaps the most significant 
protocol used on the Internet today.
+    Web services, network-enabled appliances and the growth of network 
computing continue to expand the role of
+    the HTTP protocol beyond user-driven web browsers, while increasing the 
number of applications that require
+    HTTP support.
+
+    Designed for extension while providing robust support for the base HTTP 
protocol, the HttpComponents may be
+    of interest to anyone building HTTP-aware client and server applications 
such as web browsers, web spiders,
+    HTTP proxies, web service transport libraries, or systems that leverage or 
extend the HTTP protocol for
+    distributed communication.
+
+SEE ALSO
+    http://hc.apache.org/
\ No newline at end of file

Modified: servicemix/smx4/bundles/trunk/commons-io-1.3.2/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-io-1.3.2/pom.xml?rev=1061317&r1=1061316&r2=1061317&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/commons-io-1.3.2/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/commons-io-1.3.2/pom.xml Thu Jan 20 14:35:44 
2011
@@ -23,7 +23,8 @@
     <parent>
            <groupId>org.apache.servicemix.bundles</groupId>
            <artifactId>bundles-pom</artifactId>
-           <version>4</version>
+           <version>6-SNAPSHOT</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
     </parent>
 
     <groupId>org.apache.servicemix.bundles</groupId>
@@ -31,25 +32,7 @@
     <version>1.3.2_5-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>
-        SYNOPSIS
-            This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
-
-        DESCRIPTION
-            Commons IO is a library of utilities to assist with developing IO 
functionality.
-
-            There are six main areas included:
-
-            * Utility classes - with static methods to perform common tasks
-            * Input - useful Input Stream and Reader implementations
-            * Output - useful Output Stream and Writer implementations
-            * Filters - various implementations of file filters
-            * Comparators - various implementations of java.util.Comparator 
for files
-            * File Monitor - a component for monitoring file system events
-
-        SEE ALSO
-            http://commons.apache.org/io/
-    </description>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar 
file.</description>
 
     <properties>
         <pkgGroupId>commons-io</pkgGroupId>

Added: 
servicemix/smx4/bundles/trunk/commons-io-1.3.2/src/main/resources/OSGI-INF/bundle.info
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/commons-io-1.3.2/src/main/resources/OSGI-INF/bundle.info?rev=1061317&view=auto
==============================================================================
--- 
servicemix/smx4/bundles/trunk/commons-io-1.3.2/src/main/resources/OSGI-INF/bundle.info
 (added)
+++ 
servicemix/smx4/bundles/trunk/commons-io-1.3.2/src/main/resources/OSGI-INF/bundle.info
 Thu Jan 20 14:35:44 2011
@@ -0,0 +1,17 @@
+SYNOPSIS
+    ${project.description}
+
+DESCRIPTION
+    Commons IO is a library of utilities to assist with developing IO 
functionality.
+
+    There are six main areas included:
+
+        * Utility classes - with static methods to perform common tasks
+        * Input - useful Input Stream and Reader implementations
+        * Output - useful Output Stream and Writer implementations
+        * Filters - various implementations of file filters
+        * Comparators - various implementations of java.util.Comparator for 
files
+        * File Monitor - a component for monitoring file system events
+
+SEE ALSO
+    http://commons.apache.org/io/
\ No newline at end of file


Reply via email to