You need to document what changed here or at least post it to the list.
My test cases were all running fine and then after I did a CVS up to get
your changes I get:
BUILD FAILED
/home/kschrader/nucleus/jakarta-turbine-torque/target/test/rttest/build-torque.xml:217:
/home/kschrader/nucleus/jakarta-turbine-torque/target/test/rttest/${torque.schema.dir}
not found.
Is torque.schema.dir replacing the schemaDirectory property?
If I replace it then I get a "Resource not found" error.
Perhaps you could just commit the profile that you use to run the test
cases into the profile directory so that I could modify mine to work
again.
I've got some changes to the managers that I need to check in, but I'm not
going to do so until I can get the test suite running again.
-Kurt
On 25 Jul 2002 [EMAIL PROTECTED] wrote:
> stephenh 2002/07/24 21:05:05
>
> Added: src/conf default.properties
> Log:
> Patch to support jar-only generation.
>
> - Updated build-torque.xml with new properties to control where to load schema and
>put output files for more fine-grained control and fitting torque into any source
>tree.
>
> - Added src/conf/default.properties to map from old properties to new.
>
> - Updated build.xml to put the default.properties into the jar.
>
> Revision Changes Path
> 1.1 jakarta-turbine-torque/src/conf/default.properties
>
> Index: default.properties
> ===================================================================
> #
> # This file maps old properties (and their defaults) to the
> # new properties to maintain backwards compatibility.
> #
> # Note: lib.dir/torque.lib.dir and build.properties/
> # torque.contextProperties are handled manually in
> # the build-torque.xml
> #
> # Old properties that are commented out are just
> # place holders and could be removed other than they
> # help me know what I have and haven't changed.
>
>
> #######################################
> #
> # B A S I C P R O P E R T I E S
> #
> #######################################
>
> torque.home = .
>
> # project = bookstore
> # database = postgresql
> idTableXMLFile =
> documentationFormat = html
> initialID = 101
>
> torque.project = ${project}
> torque.database = ${database}
> torque.idTableXMLFile = ${idTableXMLFile}
> torque.doc.format = ${documentationFormat}
> torque.initialID = ${initialID}
>
> #######################################
> #
> # D I R E C T O R I E S
> #
> #######################################
>
> outputDirectory = src
> schemaDirectory = schema
>
> torque.output.dir = ${torque.home}/${outputDirectory}
> torque.schema.dir = ${torque.home}/${schemaDirectory}
>
> torque.doc.dir = ${torque.output.dir}/doc
> torque.java.dir = ${torque.output.dir}/java
> torque.javadoc.dir = ${torque.output.dir}/javadoc
> torque.ojb.dir = ${torque.output.dir}/ojb
> torque.sql.dir = ${torque.output.dir}/sql
> torque.basezip.dir = ${torque.output.dir}
>
> #######################################
> #
> # P A T H S
> #
> #######################################
>
> templatePath = templates
> useClasspath = false
>
> torque.templatePath = ${templatePath}
> torque.useClasspath = ${useClasspath}
>
>
> #######################################
> #
> # D A T A B A S E S E T T I N G S
> #
> #######################################
>
> # createDatabaseUrl = jdbc:postgresql://127.0.0.1:5432/template1
> # buildDatabaseUrl = jdbc:postgresql://127.0.0.1:5432/bookstore
> # databaseUrl = jdbc:postgresql://127.0.0.1:5432/bookstore
> # databaseDriver = org.postgresql.Driver
> # databaseUser = jvanzyl
> # databasePassword =
> # databaseHost = 127.0.0.1
>
> torque.database.createUrl = ${createDatabaseUrl}
> torque.database.url = ${databaseUrl}
> torque.database.driver = ${databaseDriver}
> torque.database.user = ${databaseUser}
> torque.database.password = ${databasePassword}
> torque.database.host = ${databaseHost}
>
>
> #######################################
> #
> # C O N T R O L T E M P L A T E S
> #
> #######################################
>
> SQLControlTemplate = sql/base/Control.vm
> OMControlTemplate = om/Control.vm
> idTableControlTemplate = sql/id-table/Control.vm
> DataDTDControlTemplate = data/Control.vm
> DataDumpControlTemplate = data/dump/Control.vm
> DataSQLControlTemplate = sql/load/Control.vm
> DocControlTemplate = doc/Control.vm
>
> torque.template.sql = ${SQLControlTemplate}
> torque.template.om = ${OMControlTemplate}
> torque.template.idTable = ${idTableControlTemplate}
> torque.template.dataDtd = ${DataDTDControlTemplate}
> torque.template.dataDump = ${DataDumpControlTemplate}
> torque.template.dataSql = ${DataSQLControlTemplate}
> torque.template.doc = ${DocControlTemplate}
> torque.template.sqlDbInit = sql/db-init/Control.vm
> torque.template.ojb = ojb/repository/Control.vm
> torque.template.ojbModel = ojb/model/Control.vm
>
>
> #######################################
> #
> # C O M P I L E S E T T I N G S
> #
> #######################################
>
> src.dir = ${torque.java.dir}
> build.dest = bin/classes
> debug = on
> deprecation = off
> optimize = off
>
> torque.compile.src.dir = ${src.dir}
> torque.compile.build.dir = ${build.dest}
> torque.compile.debug = ${debug}
> torque.compile.deprecation = ${deprecation}
> torque.compile.optimize = ${optimize}
>
>
> #######################################
> #
> # T E M P L A T E V A R I A B L E S
> #
> # Eventually, I'd like to see any variables that are used by
> # the templates specifically designated as so via a naming
> # convention such as torque.context.xxx.
> #
> # Then when Texen loads the contextProperites, it can
> # screen from torque.context.xxx and forget all the other
> # junk.
> #
> #######################################
>
> addGetByNameMethod = true
> addIntakeRetrievable = false
> addSaveMethod = true
> addTimeStamp = true
> basePrefix = Base
> complexObjectModel = true
> overloadKeySetters = true
> useManagers = false
> useClasspath = false
> targetPackage = org.apache.torque
>
> # torque.context.addGetByNameMethod = ${addGetByNameMethod}
> # torque.context.addIntakeRetrievable = ${addIntakeRetrievable}
> # torque.context.addSaveMethod = ${addSaveMethod}
> # torque.context.addTimeStamp = ${addTimeStamp}
> # torque.context.basePrefix = ${basePrefix}
> # torque.context.complexObjectModel = ${complexObjectModel}
> # torque.context.overloadKeySetters = ${overloadKeySetters}
> # torque.context.useManagers = ${useManagers}
> # torque.context.useClasspath = ${useClasspath}
> # torque.context.targetPackage = ${targetPackage}
>
> #### Left ####
> # database.manual.creation
> # databaseSchema
> # dababaseName
> # buildDatabaseUrl
>
>
>
> --
> To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>