################################# # Preprocessor flags start here # ################################# # # ### code switches start here # # set to -JDK13 to turn on JDK1.2 compatibility JDK=+JDK13 # # ### code switches end here # # # ### database switches start here # # The following switches are used for preprocessing src/test/setup/db-setup.sql. # The db-setup.sql file can only be configured to work with one database at # a time by the pre-processor, so only one of the following properties can # be enabled at a time. To enable a particular database, place a '+' before # the property value; to disable it, place a '-' before it. For example, # # HSQLDB=+HSQLDB # enables the Hypersonic SQL support. Likewise, # ORACLE=-ORACLE # disables Oracle support. HSQLDB=+HSQLDB MS_ACCESS=-MS_ACCESS ORACLE=-ORACLE INSTANTDB=-INSTANTDB DB2=-DB2 POSTGRESQL=-POSTGRESQL MYSQL=-MYSQL INFORMIX=-INFORMIX MSSQLSERVER2000=-MSSQLSERVER2000 # # ### database switches start here # ################################# # Preprocessor flags end here # ################################# # # ### ANT properties start here # # Setup database access for db-setup.sql # currently this feature is not used in db-setup.sql #jdbc.driver.class=com.inet.tds.TdsDriver #jdbc.connection.url=jdbc:inetdae7:localhost:1433?database=SampleDatabase&user=sa&password= # These properties are used by torque to create the test db torque.buildFile = build-torque.xml schemaDirectory = src/schema outputDirectory = target/src SQLControlTemplate = sql/base/Control.vm project = ojbtest # These properties tell ant what the project's directory structure is. source=src src.dir=src src.java=${src.dir}/java src.test=${src.dir}/test ojb=${source}/ojb etc=${source}/etc test=${build.dir}/test dist=dist lib=lib doc=doc # These properties are used by the maven build build.dir = ${basedir}/target build.src = ${build.dir}/src build.dest = ${build.dir}/classes build.test = ${build.dir}/test junit.dir= ${build.dir}/test/ojb junit.fork=true # Default compilation properties. build.compiler=modern deprecation=true excludes= # Javadoc properties apipackagenames=ojb.broker,ojb.broker.metadata,ojb.broker.query,org.odmg,ojb.odmg,org.odbms allpackagenames=ojb.broker,ojb.broker.accesslayer,ojb.broker.cache,ojb.broker.metadata,ojb.broker.platforms,ojb.broker.query,ojb.broker.server,ojb.broker.singlevm,ojb.broker.util,ojb.broker.util.logging,ojb.broker.util.collections,ojb.broker.util.sequence,org.odmg,javax.jdo,ojb.odmg,ojb.odmg.collections,ojb.odmg.locking,ojb.odmg.oql,ojb.odmg.states,test.ojb.broker,test.ojb.ejb,test.ojb.odmg,test.ojb.tutorial1,test.ojb.tutorial2,org.odbms,ojb.soda # # ### ANT properties end here #