Update of /cvsroot/struts/ajaxchat/WEB-INF/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13282/WEB-INF/src
Modified Files:
build.xml history.txt
Log Message:
Index: build.xml
===================================================================
RCS file: /cvsroot/struts/ajaxchat/WEB-INF/src/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** build.xml 30 Nov 2005 22:04:27 -0000 1.2
--- build.xml 5 Dec 2005 04:57:52 -0000 1.3
***************
*** 10,14 ****
<property name="javadocs" value="javadocs" />
<!-- "project_version" is, obviously, the version of the app! -->
! <property name="project_version" value="1.0_alpha2" />
<!-- "proxy_host" is the address of the proxy server that will be -->
<!-- used to download dependencies, if a proxy is required on your -->
--- 10,14 ----
<property name="javadocs" value="javadocs" />
<!-- "project_version" is, obviously, the version of the app! -->
! <property name="project_version" value="1.0" />
<!-- "proxy_host" is the address of the proxy server that will be -->
<!-- used to download dependencies, if a proxy is required on your -->
***************
*** 150,154 ****
<delete dir="${distro_dir}" />
<mkdir dir="${distro_dir}" />
! <jar destfile="${distro_dir}/ajaxchat.war" basedir="../" />
<zip destfile="${distro_dir}/ajaxchat_${project_version}.zip"
basedir="${distro_dir}">
--- 150,154 ----
<delete dir="${distro_dir}" />
<mkdir dir="${distro_dir}" />
! <jar destfile="${distro_dir}/ajaxchat.war" basedir="../../" />
<zip destfile="${distro_dir}/ajaxchat_${project_version}.zip"
basedir="${distro_dir}">
***************
*** 169,172 ****
--- 169,173 ----
<target name="clean">
<echo message="Cleaning up..." />
+ <delete dir="../classes/org" />
<delete dir="${javadocs}" />
<delete file="checkstyle_results.xml" />
Index: history.txt
===================================================================
RCS file: /cvsroot/struts/ajaxchat/WEB-INF/src/history.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** history.txt 1 Dec 2005 05:22:47 -0000 1.2
--- history.txt 5 Dec 2005 04:57:52 -0000 1.3
***************
*** 1,2 ****
--- 1,13 ----
+ v1.0
+ 12/5/2005
+ ---------
+ * This is the official, stable release. Yes, beta was skipped as it didn't
+ seem to be necessary.
+ * This version corrects a problem with the WAR file creation that was present
+ in alpha 2. My bad, had an incorrect path specified in the distro task
+ in the build script and I didn't notice.
+ * Modified the clean task to, uhh, completely CLEAN.
+
+
v1.0 alpha 2
11/30/2005
|