| 1 |
# $Id: site-fetch-base.properties,v 1.3 2007/09/02 00:55:04 allisterbeharry Exp $
|
| 2 |
# @file This is the Windows sample for the site-fetch.xml build file. Modify this file with the properties you want to use to configure the build.
|
| 3 |
|
| 4 |
# You can create a base properties file - site-fetch-base.properties, which will automatically be loaded every time the build
|
| 5 |
# file is run; in addition to the usual site-fetch.properties file. Any property defined in site-fetch-base.properties can be overriden
|
| 6 |
# by a property defined in site-fetch.properties. Any properties not defined in site-fetch.properties will be inherited from site-fetch-base.properties.
|
| 7 |
# If you use a base/custom properties file combo then you can't set properties at the command-line using -D"<property>=<key>".
|
| 8 |
# By default site-fetch looks for site-fetch-base.properties and site-fetch.properties files in the DAST_HOME directory; If you want to
|
| 9 |
# keep you properties files elsewhere use D"basePropertiesFile=<absolute path to file>" and D"propertiesFile=<absolute path to file>".
|
| 10 |
|
| 11 |
#----------------------------------REQUIRED PROPERTIES------------------------------------------------#
|
| 12 |
#build.log.defaultdir; drupal.dir; drupal.core.method; drupal.modules.dir; drupal.modules.method;
|
| 13 |
#drupal.modules.list
|
| 14 |
#-----------------------------------------------------------------------------------------------------#
|
| 15 |
|
| 16 |
#This is the default dir where log files from the various tasks will be placed
|
| 17 |
build.log.defaultdir = E:\var\log\DAST
|
| 18 |
|
| 19 |
#Indicate if you want to run the clean target before the core and modules fetch which will delete all files in drupal.dir.
|
| 20 |
#Default is yes
|
| 21 |
build.run.clean = yes
|
| 22 |
|
| 23 |
#The directory in which you want to create the Drupal site - the Drupal files will go directly under here(REQUIRED):
|
| 24 |
drupal.dir = E:\Webs\drupal52\dev\dast\test\fetch
|
| 25 |
|
| 26 |
#This method denotes how the core source code should be fetched, - CVS means that the build will connect to the Drupal CVS repository
|
| 27 |
#to retrieve the code. directory means that a local directory containing the code will be used instead. tarball means a local
|
| 28 |
#.tar.gz or .tar containing the code will be used instead. (REQUIRED):
|
| 29 |
drupal.core.method = CVS
|
| 30 |
|
| 31 |
#The ABSOLUTE path to the directory containing the local Drupal 6 core code tree to be fetched;
|
| 32 |
#this will be used if drupal.core.method = directory:
|
| 33 |
drupal.core.sourcedir = E:\My Documents\Web Development Projects\Drupal\drupalCVS\DRUPAL-5-2\drupal
|
| 34 |
|
| 35 |
#The absolute path to a .tar.gz containing Drupal core code; this will be used if drupal.core.method = tarball
|
| 36 |
drupal.core.sourcetar = E:\Source Code\drupal-5.2.tar.gz
|
| 37 |
|
| 38 |
#The CVSROOT for connecting to the repository hosting the Drupal core
|
| 39 |
drupal.core.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal
|
| 40 |
|
| 41 |
#CVS command to run to fetch core - either export or checkout
|
| 42 |
drupal.core.Cvs.Command = checkout
|
| 43 |
|
| 44 |
#CVS Branch/Tag revision of core to retrieve
|
| 45 |
drupal.core.Cvs.Revision = DRUPAL-5
|
| 46 |
|
| 47 |
#The port to use for core CVS operations - default is 2401
|
| 48 |
drupal.core.Cvs.Port = 2401
|
| 49 |
|
| 50 |
#CVS compression level to use - default 6
|
| 51 |
drupal.core.Cvs.CompressionLevel = 6
|
| 52 |
|
| 53 |
#CVS warnings/errors will be reported
|
| 54 |
drupal.core.Cvs.Quiet = false
|
| 55 |
|
| 56 |
#CVS errors will cause the build to fail - it's recommended this be left as true
|
| 57 |
drupal.core.Cvs.FailOnError = true
|
| 58 |
|
| 59 |
#File to write core CVS operations output to, == stdout. Currently this file path CANNOT CONTAIN SPACES
|
| 60 |
#on *nix or Windows.
|
| 61 |
drupal.core.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-core-output.log
|
| 62 |
|
| 63 |
#File to write core CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 64 |
#on *nix or Windows.
|
| 65 |
drupal.core.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-core-error.log
|
| 66 |
|
| 67 |
#Directory that will contain the Drupal modules - this path is specified RELATIVE to the drupal.dir path
|
| 68 |
drupal.modules.dir = sites/all/modules
|
| 69 |
|
| 70 |
#The list of modules to retrieve from the directory/CVS contrib- repository - comma delimited.
|
| 71 |
drupal.modules.list=simpletest,ulink
|
| 72 |
|
| 73 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules code tree to be fetched;
|
| 74 |
#this will be used if drupal.modules.method = directory:
|
| 75 |
drupal.modules.method = CVS
|
| 76 |
|
| 77 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules to fetch;
|
| 78 |
#Used if drupal.modules.method = directory:
|
| 79 |
drupal.modules.sourcedir = E:\My Documents\Web Development Projects\Drupal\drupalCVS\contributions\modules
|
| 80 |
|
| 81 |
#The CVSROOT for connecting to the repository hosting the Drupal coontrib- modules
|
| 82 |
drupal.modules.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib
|
| 83 |
|
| 84 |
#The path to the modules in the CVS repository, this will be prefixed to the module name when performing
|
| 85 |
#a CVS export or checkout
|
| 86 |
drupal.modules.Cvs.Path = "contributions/modules/"
|
| 87 |
|
| 88 |
#CVS command to run to fetch modules - either export or checkout
|
| 89 |
drupal.modules.Cvs.Command = checkout
|
| 90 |
|
| 91 |
#CVS Branch/Tag revision of modules to retrieve - this applies to all modules currently -
|
| 92 |
#the next release will ad <Modules> element for specifying details of each module to fetch
|
| 93 |
drupal.modules.Cvs.Revision = DRUPAL-5
|
| 94 |
|
| 95 |
#The port to use for modules' CVS operations - default is 2401
|
| 96 |
drupal.modules.Cvs.Port = 2401
|
| 97 |
|
| 98 |
#CVS compression level to use - default 6
|
| 99 |
drupal.modules.Cvs.CompressionLevel = 6
|
| 100 |
|
| 101 |
#CVS warnings/errors will be reported
|
| 102 |
drupal.modules.Cvs.Quiet = false
|
| 103 |
|
| 104 |
#CVS errors encountered when fetching and individual will not cause the build to fail -
|
| 105 |
#it's recommended this be left as false
|
| 106 |
drupal.modules.Cvs.FailOnError = true
|
| 107 |
|
| 108 |
#Stem of file to write modules' CVS operations output to, == stdout. Currently this file path, CANNOT CONTAIN SPACES
|
| 109 |
#CVS Output Log for each module will be appended to this
|
| 110 |
drupal.modules.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-modules-output
|
| 111 |
|
| 112 |
#Stem of file to write modules' CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 113 |
#CVS Error log for each module will be appended to this
|
| 114 |
drupal.modules.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}site-fetch-cvs-modules-error
|