]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-6585: Move import statement earlier to pick up values from properties file...
authorAron Roberts <aron@socrates.berkeley.edu>
Wed, 22 Apr 2015 00:50:33 +0000 (17:50 -0700)
committerAron Roberts <aron@socrates.berkeley.edu>
Wed, 22 Apr 2015 00:50:33 +0000 (17:50 -0700)
build.xml

index 960f07b8bf4870ec6c715148851db53f847cb7f9..ecfffb7fc90c7503b2614fadef1ef9b7d85c7234 100644 (file)
--- a/build.xml
+++ b/build.xml
   <property name="src.dir" value="${basedir}" />
   <property name="tenants.dir" value="${src.dir}/services/common/src/main/cspace/config/services/tenants"/>
 
+  <!-- Imports a set of utility routines for managing tenant folders
+       from a separate Ant buildfile.
+       See http://wiki.apache.org/ant/NewAntFeaturesInDetail/Import -->
+  <import file="./tenant-utils-build.xml"/>
+  
   <!-- Locations of the tenant folders for the
        template tenant and newly-cloned tenant. -->
   <property name="template.tenant.dir" value="${tenants.dir}/${template.tenant.shortname}"/>
   <property name="tenant.bindings.delta.file"
     value="${tenant.dir}/${tenant.shortname}${tenant.bindings.delta.suffix}"/>
   
-  <!-- Imports a set of utility routines for managing tenant folders
-       from a separate Ant buildfile.
-       See http://wiki.apache.org/ant/NewAntFeaturesInDetail/Import -->
-  <import file="./tenant-utils-build.xml"/>
-  
    <!-- This target inherits from an existing target in the imported
         utility routines buildfile, and adds its own behavior specific to this
         CollectionSpace source code layer. -->