You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2010/10/01 15:47:27 UTC

svn commit: r1003539 - in /directory/apacheds/trunk/installers-maven-plugin: pom.xml src/main/resources/org/apache/directory/server/installers/

Author: pamarcelot
Date: Fri Oct  1 13:47:27 2010
New Revision: 1003539

URL: http://svn.apache.org/viewvc?rev=1003539&view=rev
Log:
Added the extraction in the 'generate-resources' phase of the 'config.ldif' file in the 'src/main/resources/org/apache/directory/server/installers' folder (the file name was added to svn:ignore).

Modified:
    directory/apacheds/trunk/installers-maven-plugin/pom.xml
    directory/apacheds/trunk/installers-maven-plugin/src/main/resources/org/apache/directory/server/installers/   (props changed)

Modified: directory/apacheds/trunk/installers-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/installers-maven-plugin/pom.xml?rev=1003539&r1=1003538&r2=1003539&view=diff
==============================================================================
--- directory/apacheds/trunk/installers-maven-plugin/pom.xml (original)
+++ directory/apacheds/trunk/installers-maven-plugin/pom.xml Fri Oct  1 13:47:27 2010
@@ -66,6 +66,35 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>unpack-config-file</id>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>unpack</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>${project.groupId}</groupId>
+                  <artifactId>server-config</artifactId>
+                  <version>${project.version}</version>
+                </artifactItem>
+              </artifactItems>
+              <includes>config.ldif</includes>
+              <outputDirectory>src/main/resources/org/apache/directory/server/installers</outputDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <reporting>
     <plugins>
       <plugin>

Propchange: directory/apacheds/trunk/installers-maven-plugin/src/main/resources/org/apache/directory/server/installers/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Oct  1 13:47:27 2010
@@ -0,0 +1 @@
+config.ldif