From: Aron Roberts Date: Fri, 13 Mar 2015 21:41:54 +0000 (-0700) Subject: CSPACE-6585: Initial iteration of Ant buildfile to clone and update a new tenant... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=f9dce271d5c4d5f4683419f88702d8398a1b7fab;p=tmp%2Fjakarta-migration.git CSPACE-6585: Initial iteration of Ant buildfile to clone and update a new tenant folder in the Services layer. --- diff --git a/build-tenant.xml b/build-tenant.xml new file mode 100644 index 000000000..50c185baa --- /dev/null +++ b/build-tenant.xml @@ -0,0 +1,93 @@ + + Manage Application layer folders and files containing per-tenant configurations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tenant-utils-build.xml b/tenant-utils-build.xml new file mode 100644 index 000000000..309e6ac0e --- /dev/null +++ b/tenant-utils-build.xml @@ -0,0 +1,126 @@ + + Utilities for managing folders and files containing per-tenant configurations + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tenant.properties b/tenant.properties new file mode 100644 index 000000000..5d46636ac --- /dev/null +++ b/tenant.properties @@ -0,0 +1,23 @@ +# Values in this 'tenant.properties' file will be used +# in targets in the Ant buildfile, build.xml, when copying +# ("cloning") a 'template tenant' to create a new tenant + +# Values for these properties can instead, or also, be +# provided at the command line when invoking Ant, via +# one or more arguments similar to: +# -Dvariable.name=somevalue +# +# Where there are conflicts, values provided via the command line +# are used in preference to those provided in this properties file. + +# The short name for the existing tenant that will be copied, +# or "cloned" to create a new tenant +template.tenant.shortname= + +# The short name for the new tenant to be created +tenant.shortname= + +# The ID for the new tenant to be created +# (currently an integer; e.g. '5', '23') +tenant.id= +