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/11 02:17:33 UTC

svn commit: r473612 - in /directory/sandbox/jconlon/osgi-commons: commons-collections/ commons-collections/pom.xml pom.xml

Author: jconlon
Date: Fri Nov 10 17:17:32 2006
New Revision: 473612

URL: http://svn.apache.org/viewvc?view=rev&rev=473612
Log:
adding wrapping subproject for commons-collection

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

Propchange: directory/sandbox/jconlon/osgi-commons/commons-collections/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Nov 10 17:17:32 2006
@@ -0,0 +1 @@
+target

Added: directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml?view=auto&rev=473612
==============================================================================
--- directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml (added)
+++ directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml Fri Nov 10 17:17:32 2006
@@ -0,0 +1,43 @@
+<?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>commons-collections-osgi</artifactId>
+  <name>${pom.artifactId} bundle</name>
+  <version>3.2</version>
+  <description>
+    This bundle simply wraps commons-collections-${pom.version}.jar.
+  </description>
+  <packaging>bundle</packaging>
+  <dependencies>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</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>
+	    org.apache.commons.collections.*
+	    </Export-Package>
+	   <Import-Package>!org.apache.commons.collections.*</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=473612&r1=473611&r2=473612
==============================================================================
--- directory/sandbox/jconlon/osgi-commons/pom.xml (original)
+++ directory/sandbox/jconlon/osgi-commons/pom.xml Fri Nov 10 17:17:32 2006
@@ -20,6 +20,7 @@
   
   <modules>
     <module>antlr</module>
+    <module>commons-collections</module>
   </modules>
   
 </project>



Re: svn commit: r473612 - in /directory/sandbox/jconlon/osgi-commons: commons-collections/ commons-collections/pom.xml pom.xml

Posted by Trustin Lee <tr...@gmail.com>.
Why are these commit notifications in the moderation queue?  I had to accept
all of them manually.  Is there any problem in our settings?

Trustin

On 11/11/06, jconlon@apache.org <jc...@apache.org> wrote:
>
> Author: jconlon
> Date: Fri Nov 10 17:17:32 2006
> New Revision: 473612
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=473612
> Log:
> adding wrapping subproject for commons-collection
>
> Added:
>     directory/sandbox/jconlon/osgi-commons/commons-collections/   (with
> props)
>     directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml
> Modified:
>     directory/sandbox/jconlon/osgi-commons/pom.xml
>
> Propchange: directory/sandbox/jconlon/osgi-commons/commons-collections/
>
> ------------------------------------------------------------------------------
> --- svn:ignore (added)
> +++ svn:ignore Fri Nov 10 17:17:32 2006
> @@ -0,0 +1 @@
> +target
>
> Added: directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml
> URL:
> http://svn.apache.org/viewvc/directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml?view=auto&rev=473612
>
> ==============================================================================
> --- directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml
> (added)
> +++ directory/sandbox/jconlon/osgi-commons/commons-collections/pom.xml Fri
> Nov 10 17:17:32 2006
> @@ -0,0 +1,43 @@
> +<?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>commons-collections-osgi</artifactId>
> +  <name>${pom.artifactId} bundle</name>
> +  <version>3.2</version>
> +  <description>
> +    This bundle simply wraps commons-collections-${pom.version}.jar.
> +  </description>
> +  <packaging>bundle</packaging>
> +  <dependencies>
> +    <dependency>
> +      <groupId>commons-collections</groupId>
> +      <artifactId>commons-collections</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>
> +           org.apache.commons.collections.*
> +           </Export-Package>
>
> +          <Import-Package>!org.apache.commons.collections.*</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=473612&r1=473611&r2=473612
>
> ==============================================================================
> --- directory/sandbox/jconlon/osgi-commons/pom.xml (original)
> +++ directory/sandbox/jconlon/osgi-commons/pom.xml Fri Nov 10 17:17:32
> 2006
> @@ -20,6 +20,7 @@
>
>    <modules>
>      <module>antlr</module>
> +    <module>commons-collections</module>
>    </modules>
>
> </project>
>
>
>


-- 
what we call human nature is actually human habit
--
http://gleamynode.net/
--
PGP key fingerprints:
* E167 E6AF E73A CBCE EE41  4A29 544D DE48 FE95 4E7E
* B693 628E 6047 4F8F CFA4  455E 1C62 A7DC 0255 ECA6