# ################################################################################ # These are build properties for the ojb-blank project. In addition to # any customization of your build process, you will probably want # to change the values in the block below to map to your database # rather than a generic HSQLDB instance. # jcdAlias=default databaseName=ojb_blank databaseUser=sa databasePassword= # Settings are for Hsqldb (embedded database) dbmsName=Hsqldb jdbcLevel=2.0 jdbcRuntimeDriver=org.hsqldb.jdbcDriver urlProtocol=jdbc urlSubprotocol=hsqldb urlDbalias=${databaseName} # For MySQL this would look like: #dbmsName=MySQL #jdbcLevel=3.0 #jdbcRuntimeDriver=com.mysql.jdbc.Driver #urlProtocol=jdbc #urlSubprotocol=mysql #urlDbalias=//localhost/${databaseName} # If you want to use Torque for database initialization then set this value # to one of these values: # db2,hypersonic,interbase,msaccess,mssql,mysql,oracle, postgresql,sapdb,sybase torque.database=hypersonic # This is a specific url that Torque uses for creating a database. # For several databases this is different from the url used to access the database # For instance, MySQL requires an url that points to the host, but without a database name # # For Hsqldb we have to mangle the path so that we can invoke Torque in the base # directory but the database is created in the ${build.resource.dir} folder torque.database.createUrl=${urlProtocol}:${urlSubprotocol}:${build.resource.dir}${urlDbalias} # This specifies the url that Torque uses to access the existing database # # For Hsqldb we use the same url as for the createUrl above torque.database.buildUrl=${urlProtocol}:${urlSubprotocol}:${build.resource.dir}${urlDbalias} # Set this to the name of the jar file you want produced from the jar target jar.name=my-project.jar ################################################################################ # Build Properties # source.dir=src source.java.dir=${source.dir}/java source.resource.dir=${source.dir}/resources source.test.dir=${source.dir}/test source.schema.dir=${source.dir}/schema build.dir=build build.lib.dir=lib build.classes.dir=${build.dir}/classes/ build.resource.dir=${build.dir}/resources/ target.dir=target