Index: lams_tool_forum/build.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/build.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/build.properties 17 Jun 2005 04:47:32 -0000 1.1 @@ -0,0 +1,18 @@ +######################################################################################################################## +### BUILD PROPERTIES ### +### 1) Do *NOT* use backslashes in paths unless you are sure the ANT task treats them properly. ### +### 2) Use only ant variables (${foo}) that You declared above or make *SURE* You derive them from the right place. ### +### 3) Comment out boolean style build settings instead of setting false. Set to false may fail. ### +### 4) Uncommenting the forceClean attribute *WILL* delete your sourcecode to make place for vcs controlled builds. ### +######################################################################################################################## + +### project properties ### +project = lams_tool_forum +project.version = 2 +project.displayname = lams forum tool +project.description = lams forum tool + +#appserver.deploy.dir= c:/orion/applications/auto +appserver.deploy.dir = C:/resin-3.0.13/webapps +#appserver.deploy.dir = C:/Tomcat5/webapps +#appserver.deploy.dir = C:/tomcat41/jakarta-tomcat-4.1.31/webapps Index: lams_tool_forum/build.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/build.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/build.xml 17 Jun 2005 04:47:32 -0000 1.1 @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------+ + | build initializing | + +------------------------------------------+ + + + + + + + + +------------------------------------------+ + | creating directory structure | + +------------------------------------------+ + + + + + + + + + + + + + + + +------------------------------------------+ + | clean | + +------------------------------------------+ + + + + + + + + + + + + + +------------------------------------------+ + | compile | + +------------------------------------------+ + + + + + + +------------------------------------------+ + | generating hibernate metadata | + +------------------------------------------+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------+ + | compile | + +------------------------------------------+ + + + + + + + + + + + + + + + + + + + +-------------------------------------------+ + | run junit tests and save results in /test | + +-------------------------------------------+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------+ + | merge stuff into jar file | + +------------------------------------------+ + + + + + + + + + + +------------------------------------------+ + | create jar file | + +------------------------------------------+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------+ + | built war file | + +------------------------------------------+ + + + + +------------------------------------------+ + | created distribution | + +------------------------------------------+ + + + + +------------------------------------------+ + | deployed war file | + +------------------------------------------+ + + + + + + + Index: lams_tool_forum/hsql-hibernate.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/hsql-hibernate.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/hsql-hibernate.properties 17 Jun 2005 04:47:32 -0000 1.1 @@ -0,0 +1,8 @@ +hibernate.dialect = net.sf.hibernate.dialect.HSQLDialect +hibernate.connection.driver_class = org.hsqldb.jdbcDriver +hibernate.connection.url = jdbc:hsqldb:. +hibernate.connection.username = sa +hibernate.connection.password = +hibernate.connection.pool_size = 20 +hibernate.statement_cache.size = 6 +hibernate.show_sql = false Index: lams_tool_forum/mysql-hibernate.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/mysql-hibernate.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/mysql-hibernate.properties 17 Jun 2005 04:47:32 -0000 1.1 @@ -0,0 +1,8 @@ +hibernate.dialect = net.sf.hibernate.dialect.MySQLDialect +hibernate.connection.driver_class = com.mysql.jdbc.Driver +hibernate.connection.url = jdbc:mysql://localhost/forum +hibernate.connection.username = root +hibernate.connection.password = root +hibernate.connection.pool_size = 20 +hibernate.statement_cache.size = 6 +hibernate.show_sql = false