[Rapforums-developer] build build.xml,1.2,1.3
Status: Beta
Brought to you by:
brippe
From: <br...@pr...> - 2004-01-26 17:51:12
|
Update of /cvsroot/rapforums/build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3386 Modified Files: build.xml Log Message: Update version to 0.8.3 Index: build.xml =================================================================== RCS file: /cvsroot/rapforums/build/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** build.xml 9 Dec 2003 19:05:42 -0000 1.2 --- build.xml 26 Jan 2004 17:50:02 -0000 1.3 *************** *** 4,8 **** <property file="build.properties"/> <property name="app.name" value="RAP Forums"/> ! <property name="app.version" value="0.8.2"/> <property name="deploy.home" value="(set this in build.properties!)"/> <property name="test.home" value="(set this in build.properties!)"/> --- 4,8 ---- <property file="build.properties"/> <property name="app.name" value="RAP Forums"/> ! <property name="app.version" value="0.8.3"/> <property name="deploy.home" value="(set this in build.properties!)"/> <property name="test.home" value="(set this in build.properties!)"/> *************** *** 18,21 **** --- 18,22 ---- <property name="xml-apis.jar" value="(set this in build.properties!)"/> <property name="jdbc2_0-stdext.jar.jar" value="(set this in build.properties!)"/> + <!-- Modify jdbcDriver to the appropriate database driver --> <!-- MS SQL Server 2000: use mssqlserver.jar --> *************** *** 25,31 **** <property name="jdbcDriverBase.jar" value="(set this in build.properties!)"/> <property name="jdbcDriverUtil.jar" value="(set this in build.properties!)"/> <!-- SQLTask is used to load MS SQL stored procedures for forums paging --> ! <!-- Uncomment if you are using MS SQL <taskdef name="SQLTask" classname="edu.fullcoll.uportal.channels.rap.forum.tools.SQLTask"/>--> <!-- ==================== Compile Target ================================= --> <target name="compile"> --- 26,39 ---- <property name="jdbcDriverBase.jar" value="(set this in build.properties!)"/> <property name="jdbcDriverUtil.jar" value="(set this in build.properties!)"/> + <!-- SQLTask is used to load MS SQL stored procedures for forums paging --> ! <!-- Uncomment if you are using MS SQL and MAKE SURE THAT THE SQLTask class file is in your ! classpath path. I have commented it out in case you want to create the stored procedures manually ! or if you are using another database that doesn't support stored procedures. ! ! ****SQLTask creates the stored procedures for Microsoft SQL Server***** ! <taskdef name="SQLTask" classname="edu.fullcoll.uportal.channels.rap.forum.tools.SQLTask"/>--> + <!-- ==================== Compile Target ================================= --> <target name="compile"> *************** *** 41,44 **** --- 49,53 ---- </javac> </target> + <!-- ==================== JavaDoc Target ================================= --> <target name="javadoc" description="Javadoc for RAP Forums channel."> *************** *** 57,60 **** --- 66,70 ---- </javadoc> </target> + <!-- ==================== Jar Forums Target ================================= --> <target name="jarForums" depends="compile"> *************** *** 64,67 **** --- 74,78 ---- </jar> </target> + <!-- ==================== Clean Target ================================= --> <target name="clean" description="Clean all build products."> *************** *** 69,76 **** <delete dir="docs/api"/> </target> <!-- ==================== Package Forums For Release Target ================================= --> <target name="packageRelease" depends="jarForums"> ! <delete file="release/rapForumsV0_8_2.zip"/> ! <zip zipfile="${release.home}/rapForumsV0_8_2.zip"> <fileset dir="." excludes="release/*.zip"/> </zip> --- 80,88 ---- <delete dir="docs/api"/> </target> + <!-- ==================== Package Forums For Release Target ================================= --> <target name="packageRelease" depends="jarForums"> ! <delete file="release/rapForumsV0_8_3.zip"/> ! <zip zipfile="${release.home}/rapForumsV0_8_3.zip"> <fileset dir="." excludes="release/*.zip"/> </zip> *************** *** 102,105 **** --- 114,118 ---- </copy> </target> + <!-- ==================== Load the Database Target ================================= --> <target name="db"> *************** *** 123,126 **** --- 136,140 ---- <!-- Uncomment to use MS SQL stored procedures for forums paging The class edu.fullcoll.uportal.channels.rap.forum.tools.SQLTask MUST be in the classpath + <echo>Creating default values for tables and paging stored procedures</echo> <SQLTask scriptXML="properties/sqlScript.xml"/> |