]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-6692: We needed to copy the binaries that are in the resources folder without...
authorremillet <remillet@yahoo.com>
Tue, 2 Jun 2015 23:42:50 +0000 (16:42 -0700)
committerremillet <remillet@yahoo.com>
Tue, 2 Jun 2015 23:42:50 +0000 (16:42 -0700)
services/common/build.xml

index 826de10ba08b3810dbe256c7dd6983fa6b3bfab3..ac37e2194a02ba18997cbc856b9f862c3195715b 100644 (file)
     <target name="deploy_tenantconfig"
             description="deploy tenant configuration">
         <copy todir="${jee.server.cspace}/cspace/config/services">
-            <fileset dir="${basedir}/src/main/cspace/config/services"/>
+            <fileset dir="${basedir}/src/main/cspace/config/services">
+                               <exclude name="resources/"/>
+                       </fileset>
                        <filterset>
                                <filter token="CSPACE_INSTANCE_ID" value="${cspace.instance.id}" />
                                <filter token="DB_CSADMIN_NAME" value="${db.csadmin.name}" />
                                <filter token="DB_CSPACE_NAME" value="${db.cspace.name}" />
                        </filterset>
         </copy>
+               <!--
+                       We need to copy the binaries that are in the "resources" folder
+                       without the <filterset> in place because it seems to corrupt them.
+               -->
+        <copy todir="${jee.server.cspace}/cspace/config/services/resources">
+            <fileset dir="${basedir}/src/main/cspace/config/services/resources"/>
+        </copy>                
     </target>
 
     <target name="deploy" depends="install"