You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2006/04/28 07:15:48 UTC

svn commit: r397762 - in /directory/trunks/apacheds/osgi: shared-asn1-osgi/ shared-asn1-osgi/pom.xml shared-ldap-osgi/ shared-ldap-osgi/pom.xml

Author: erodriguez
Date: Thu Apr 27 22:15:46 2006
New Revision: 397762

URL: http://svn.apache.org/viewcvs?rev=397762&view=rev
Log:
New bundles for ApacheDS OSGi Main:
o  Shared ASN1
o  Shared LDAP

Added:
    directory/trunks/apacheds/osgi/shared-asn1-osgi/   (with props)
    directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml   (with props)
    directory/trunks/apacheds/osgi/shared-ldap-osgi/   (with props)
    directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml   (with props)

Propchange: directory/trunks/apacheds/osgi/shared-asn1-osgi/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Apr 27 22:15:46 2006
@@ -0,0 +1,16 @@
+bin
+build
+target
+classes
+.classpath
+.project
+.settings
+.wtpmodules
+.deployables
+*.iml
+*.ipr
+*.iws
+*.log
+lib
+bundle
+dist

Added: directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml?rev=397762&view=auto
==============================================================================
--- directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml (added)
+++ directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml Thu Apr 27 22:15:46 2006
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.directory.server</groupId>
+    <artifactId>build</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>shared-asn1-osgi</artifactId>
+  <name>ApacheDS Shared ASN1 Library</name>
+  <description>
+    The ApacheDS Shared ASN1 Library packaged as an OSGi bundle.
+  </description>
+  <packaging>osgi-bundle</packaging>  
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>nlog4j</artifactId>
+      <version>1.2.19</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.directory.shared</groupId>
+      <artifactId>shared-asn1</artifactId>
+      <version>0.9.6-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix.plugins</groupId>
+        <artifactId>maven-osgi-plugin</artifactId>
+        <version>0.8.0-SNAPSHOT</version>
+        <extensions>true</extensions>
+        <configuration>
+          <osgiManifest>
+            <bundleName>ApacheDS Shared ASN1 Library Bundle</bundleName>
+            <bundleVendor>Apache Software Foundation</bundleVendor>
+            <bundleCategory>ApacheDS Library</bundleCategory>
+            <bundleDescription>
+              A bundle that registers the Apache Directory Shared ASN1 Library.
+            </bundleDescription>
+            <importPackage>
+              org.slf4j
+            </importPackage>
+            <exportPackage>
+              org.apache.directory.shared.asn1,org.apache.directory.shared.asn1.ber,org.apache.directory.shared.asn1.ber.grammar,org.apache.directory.shared.asn1.ber.tlv,org.apache.directory.shared.asn1.codec,org.apache.directory.shared.asn1.codec.stateful,org.apache.directory.shared.asn1.der,org.apache.directory.shared.asn1.primitives,org.apache.directory.shared.asn1.util
+            </exportPackage>
+          </osgiManifest>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: directory/trunks/apacheds/osgi/shared-asn1-osgi/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/trunks/apacheds/osgi/shared-ldap-osgi/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Apr 27 22:15:46 2006
@@ -0,0 +1,16 @@
+bin
+build
+target
+classes
+.classpath
+.project
+.settings
+.wtpmodules
+.deployables
+*.iml
+*.ipr
+*.iws
+*.log
+lib
+bundle
+dist

Added: directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml?rev=397762&view=auto
==============================================================================
--- directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml (added)
+++ directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml Thu Apr 27 22:15:46 2006
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.directory.server</groupId>
+    <artifactId>build</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>shared-ldap-osgi</artifactId>
+  <name>ApacheDS Shared LDAP Library</name>
+  <description>
+    The ApacheDS Shared LDAP Library packaged as an OSGi bundle.
+  </description>
+  <packaging>osgi-bundle</packaging>  
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.directory.shared</groupId>
+      <artifactId>shared-ldap</artifactId>
+      <version>0.9.6-SNAPSHOT</version>
+    </dependency>
+  </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix.plugins</groupId>
+        <artifactId>maven-osgi-plugin</artifactId>
+        <version>0.8.0-SNAPSHOT</version>
+        <extensions>true</extensions>
+        <configuration>
+          <osgiManifest>
+            <bundleName>ApacheDS Shared LDAP Library Bundle</bundleName>
+            <bundleVendor>Apache Software Foundation</bundleVendor>
+            <bundleCategory>ApacheDS Library</bundleCategory>
+            <bundleDescription>
+              A bundle that registers the Apache Directory Shared LDAP Library.
+            </bundleDescription>
+            <importPackage>
+              antlr,antlr.collections.impl,javax.naming,javax.naming.directory,javax.naming.ldap,org.apache.commons.collections,org.apache.commons.lang,org.apache.directory.shared.asn1,org.apache.directory.shared.asn1.ber,org.apache.directory.shared.asn1.ber.grammar,org.apache.directory.shared.asn1.ber.tlv,org.apache.directory.shared.asn1.codec,org.apache.directory.shared.asn1.codec.stateful,org.apache.directory.shared.asn1.primitives,org.apache.directory.shared.asn1.util,org.apache.log4j,org.slf4j
+            </importPackage>
+            <exportPackage>
+              org.apache.directory.shared.ldap,org.apache.directory.shared.ldap.aci,org.apache.directory.shared.ldap.codec.util,org.apache.directory.shared.ldap.exception,org.apache.directory.shared.ldap.filter,org.apache.directory.shared.ldap.ldif,org.apache.directory.shared.ldap.message,org.apache.directory.shared.ldap.name,org.apache.directory.shared.ldap.schema,org.apache.directory.shared.ldap.subtree,org.apache.directory.shared.ldap.util
+            </exportPackage>
+          </osgiManifest>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: directory/trunks/apacheds/osgi/shared-ldap-osgi/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native