You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2016/05/31 15:26:35 UTC

svn commit: r1746289 - in /directory/shared/branches/shared-value/ldap: codec/standalone/pom.xml schema/data/pom.xml

Author: elecharny
Date: Tue May 31 15:26:35 2016
New Revision: 1746289

URL: http://svn.apache.org/viewvc?rev=1746289&view=rev
Log:
Applied patch for DIRSERVER_2150

Modified:
    directory/shared/branches/shared-value/ldap/codec/standalone/pom.xml
    directory/shared/branches/shared-value/ldap/schema/data/pom.xml

Modified: directory/shared/branches/shared-value/ldap/codec/standalone/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-value/ldap/codec/standalone/pom.xml?rev=1746289&r1=1746288&r2=1746289&view=diff
==============================================================================
--- directory/shared/branches/shared-value/ldap/codec/standalone/pom.xml (original)
+++ directory/shared/branches/shared-value/ldap/codec/standalone/pom.xml Tue May 31 15:26:35 2016
@@ -69,4 +69,38 @@
     </dependency>
   </dependencies>
   
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+          </archive>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <supportedProjectTypes>
+            <supportedProjectType>jar</supportedProjectType>
+          </supportedProjectTypes>
+          <instructions>
+            <Export-Package>*</Export-Package>
+          </instructions>
+        </configuration>
+        <executions>
+          <execution>
+            <id>bundle-manifest</id>
+            <phase>process-classes</phase>
+            <goals>
+              <goal>manifest</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  
 </project>

Modified: directory/shared/branches/shared-value/ldap/schema/data/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-value/ldap/schema/data/pom.xml?rev=1746289&r1=1746288&r2=1746289&view=diff
==============================================================================
--- directory/shared/branches/shared-value/ldap/schema/data/pom.xml (original)
+++ directory/shared/branches/shared-value/ldap/schema/data/pom.xml Tue May 31 15:26:35 2016
@@ -99,6 +99,8 @@
                   <!-- Replace the file separator ('/' on Unix, '\' on Windows) by a '/' - Useful on Windows -->
                   <replacefilter token="${file.separator}" value="/" />
                 </replace>
+                
+                <attachartifact file="${schema.index}" classifier="schema" type="index"/>
               </target>
             </configuration>
             <goals>