You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2009/03/05 16:27:09 UTC

svn commit: r750475 - /servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml

Author: gnodet
Date: Thu Mar  5 15:27:09 2009
New Revision: 750475

URL: http://svn.apache.org/viewvc?rev=750475&view=rev
Log:
Fix missing config.properties file in gshell-admin

Modified:
    servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml

Modified: servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml?rev=750475&r1=750474&r2=750475&view=diff
==============================================================================
--- servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml (original)
+++ servicemix/smx4/kernel/trunk/gshell/gshell-admin/pom.xml Thu Mar  5 15:27:09 2009
@@ -103,20 +103,20 @@
                 <artifactId>maven-resources-plugin</artifactId>
                 <executions>
                     <execution>
-                    <id>copy-resources</id>
-                    <!-- here the phase you need -->
-                    <phase>compile</phase>
-                    <goals>
-                        <goal>copy-resources</goal>
-                    </goals>
-                    <configuration>
-                            <outputDirectory>${basedir}/target/classes</outputDirectory>
+                        <id>copy-resources</id>
+                        <!-- here the phase you need -->
+                        <phase>compile</phase>
+                        <goals>
+                            <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                            <outputDirectory>${basedir}/target/classes/org/apache/servicemix/kernel/gshell/admin/etc</outputDirectory>
                             <resources>          
                                 <resource>
                                     <directory>../../${config.location}</directory>
-                                        <includes>
-                                            <include>config.properties</include>
-                                        </includes>
+                                    <includes>
+                                        <include>config.properties</include>
+                                    </includes>
                                 </resource>
                             </resources>              
                         </configuration>