You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2011/01/14 11:03:43 UTC

svn commit: r1058920 - /directory/shared/trunk/ldap-schema/pom.xml

Author: seelmann
Date: Fri Jan 14 10:03:43 2011
New Revision: 1058920

URL: http://svn.apache.org/viewvc?rev=1058920&view=rev
Log:
Generate index outside of target/classes so that is survives a refresh of the Eclipse workspace

Modified:
    directory/shared/trunk/ldap-schema/pom.xml

Modified: directory/shared/trunk/ldap-schema/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap-schema/pom.xml?rev=1058920&r1=1058919&r2=1058920&view=diff
==============================================================================
--- directory/shared/trunk/ldap-schema/pom.xml (original)
+++ directory/shared/trunk/ldap-schema/pom.xml Fri Jan 14 10:03:43 2011
@@ -79,7 +79,7 @@
             <configuration>
               <target>
                 <!-- Various properties -->
-                <property name="schema.index" value="target/classes/META-INF/apacheds-schema.index"/>
+                <property name="schema.index" value="target/generated-resources/apacheds/META-INF/apacheds-schema.index"/>
                 <property name="schema.location" value="src${file.separator}main${file.separator}resources${file.separator}"/>
               
                 <!-- Listing all LDIF files under schema location -->
@@ -110,5 +110,13 @@
         </executions>
       </plugin>
     </plugins>
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+      </resource>
+      <resource>
+        <directory>target/generated-resources/apacheds</directory>
+      </resource>
+    </resources>
   </build>
 </project>