]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
NOJIRA - restructured deploy target very slightly to have a separate target to deploy...
authorPatrick Schmitz <pschmitz@berkeley.edu>
Tue, 15 Nov 2011 00:00:50 +0000 (00:00 +0000)
committerPatrick Schmitz <pschmitz@berkeley.edu>
Tue, 15 Nov 2011 00:00:50 +0000 (00:00 +0000)
services/common/build.xml

index 110f040af5b8047f38c4c7e3328b3edd64e5645b..ec086f304058013ef63fe13e340eb230bc51cb56 100644 (file)
         </copy>
     </target>
        
+    <target name="deploy_tenantconfig"
+            description="deploy tenant configuration">
+        <copy todir="${jboss.server.cspace}/cspace/config/services">
+            <fileset dir="${basedir}/src/main/cspace/config/services"/>
+        </copy>
+    </target>
+       
 
     <target name="deploy" depends="install"
             description="deploy common elements in ${jboss.server.cspace}">
         <antcall target="deploy_spring" />
         <antcall target="deploy_slf4j" />
         <antcall target="deploy_xmlmerge" />
-       
-        <copy todir="${jboss.server.cspace}/cspace/config/services">
-            <fileset dir="${basedir}/src/main/cspace/config/services"/>
-        </copy>
-       
+        <antcall target="deploy_tenantconfig" />
     </target>
 
     <target name="undeploy"