Return-Path: Delivered-To: apmail-directory-commits-archive@www.apache.org Received: (qmail 74782 invoked from network); 16 Jan 2011 13:30:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Jan 2011 13:30:28 -0000 Received: (qmail 26998 invoked by uid 500); 16 Jan 2011 13:30:27 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 26978 invoked by uid 500); 16 Jan 2011 13:30:27 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 26970 invoked by uid 99); 16 Jan 2011 13:30:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Jan 2011 13:30:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Jan 2011 13:30:26 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0EC312388A38; Sun, 16 Jan 2011 13:30:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1059555 - /directory/shared/branches/shared-AP/ldap-schema/pom.xml Date: Sun, 16 Jan 2011 13:30:00 -0000 To: commits@directory.apache.org From: akarasulu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110116133000.0EC312388A38@eris.apache.org> Author: akarasulu Date: Sun Jan 16 13:29:59 2011 New Revision: 1059555 URL: http://svn.apache.org/viewvc?rev=1059555&view=rev Log: MERGE: Converted ldap-schema to an OSGi bundle: o Used maven-bundle-plugin just to generate the MANIFEST.MF o Using Maven Jar Archiver to assemble the jar merging it's manifest entries with the entries generated from the bundle plugin. o Need to test the bundle classpath is setup propertly for the export of schema files to occur without issues in OSGi environment. Modified: directory/shared/branches/shared-AP/ldap-schema/pom.xml Modified: directory/shared/branches/shared-AP/ldap-schema/pom.xml URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-AP/ldap-schema/pom.xml?rev=1059555&r1=1059554&r2=1059555&view=diff ============================================================================== --- directory/shared/branches/shared-AP/ldap-schema/pom.xml (original) +++ directory/shared/branches/shared-AP/ldap-schema/pom.xml Sun Jan 16 13:29:59 2011 @@ -109,6 +109,47 @@ + + + org.apache.maven.plugins + maven-jar-plugin + + + + ${project.build.outputDirectory}/META-INF/MANIFEST.MF + + + + + + + org.apache.felix + maven-bundle-plugin + true + true + + + bundle-manifest + process-classes + + manifest + + + + + + + ${pom.groupId}.ldap.schema + + ${pom.artifactId} + ${pom.version} + + org.apache.directory.shared.ldap.schema.* + + + + +