code now clean compiles using newer versions of various libraries - this will
all get documented properly soon, need to update this for the new server... also changed all the E-mail addresses in the old java source to match present reality
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
|
||||
The Original Code is the Venice Web Communities System.
|
||||
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@ricochet.com>,
|
||||
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@users.sf.net>,
|
||||
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
||||
Copyright (C) 2001-2004 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
Copyright (C) 2001-2006 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
||||
|
||||
Contributor(s):
|
||||
-->
|
||||
@@ -38,42 +38,47 @@
|
||||
<property name="deploy.home" value="../venice"/>
|
||||
<property name="javadoc.home" value="${deploy.home}/javadoc"/>
|
||||
|
||||
<!-- [Location of Servlet API 2.3] -->
|
||||
<!-- [Location of Servlet API 2.4] -->
|
||||
<property name="servlet.base" value="../servletapi"/>
|
||||
<property name="servlet.lib" value="${servlet.base}/lib"/>
|
||||
<property name="servlet.jarfile" value="servlet.jar"/>
|
||||
<property name="servlet.jarfile" value="servlet-api.jar"/>
|
||||
|
||||
<!-- [Location of Commons Collections Library 2.1] -->
|
||||
<!-- [Location of JSP API 2.0] -->
|
||||
<property name="jsp.base" value="../jspapi"/>
|
||||
<property name="jsp.lib" value="${jsp.base}/lib"/>
|
||||
<property name="jsp.jarfile" value="jsp-api.jar"/>
|
||||
|
||||
<!-- [Location of Commons Collections Library 3.1] -->
|
||||
<property name="collections.base" value="../commons-collections"/>
|
||||
<property name="collections.lib" value="${collections.base}"/>
|
||||
<property name="collections.jarfile" value="commons-collections.jar"/>
|
||||
<property name="collections.jarfile" value="commons-collections-3.1.jar"/>
|
||||
|
||||
<!-- [Location of Commons Codec Library 1.2] -->
|
||||
<!-- [Location of Commons Codec Library 1.3] -->
|
||||
<property name="codec.base" value="../commons-codec"/>
|
||||
<property name="codec.lib" value="${codec.base}"/>
|
||||
<property name="codec.jarfile" value="commons-codec-1.2.jar"/>
|
||||
<property name="codec.jarfile" value="commons-codec-1.3.jar"/>
|
||||
|
||||
<!-- [Location of Commons HTTP Client Library 2.0.2] -->
|
||||
<!-- [Location of Commons HTTP Client Library 3.0] -->
|
||||
<property name="httpclient.base" value="../commons-httpclient"/>
|
||||
<property name="httpclient.lib" value="${httpclient.base}"/>
|
||||
<property name="httpclient.jarfile" value="commons-httpclient-2.0.2.jar"/>
|
||||
<property name="httpclient.jarfile" value="commons-httpclient-3.0.jar"/>
|
||||
|
||||
<!-- [Location of Jakarta Regexp Library 1.3] -->
|
||||
<!-- [Location of Jakarta Regexp Library 1.4] -->
|
||||
<property name="regexp.base" value="../jakarta-regexp"/>
|
||||
<property name="regexp.lib" value="${regexp.base}"/>
|
||||
<property name="regexp.jarfile" value="jakarta-regexp-1.3.jar"/>
|
||||
<property name="regexp.jarfile" value="jakarta-regexp-1.4.jar"/>
|
||||
|
||||
<!-- [Location of Log4J 1.2.8] -->
|
||||
<!-- [Location of Log4J 1.2.13] -->
|
||||
<property name="log4j.base" value="../log4j"/>
|
||||
<property name="log4j.lib" value="${log4j.base}/dist/lib"/>
|
||||
<property name="log4j.jarfile" value="log4j-1.2.8.jar"/>
|
||||
<property name="log4j.jarfile" value="log4j-1.2.13.jar"/>
|
||||
|
||||
<!-- [Location of Bean Scripting Framework 2.3] -->
|
||||
<property name="bsf.base" value="../bsf"/>
|
||||
<property name="bsf.lib" value="${bsf.base}/lib"/>
|
||||
<property name="bsf.jarfile" value="bsf.jar"/>
|
||||
|
||||
<!-- [Location of Jacl 1.3.1] -->
|
||||
<!-- [Location of Jacl 1.3.2] -->
|
||||
<property name="jacl.base" value="../jacl"/>
|
||||
<property name="jacl.lib" value="${jacl.base}"/>
|
||||
<property name="jacl.jarfile" value="jacl.jar"/>
|
||||
@@ -95,6 +100,7 @@
|
||||
|
||||
<path id="base.build.path">
|
||||
<fileset dir="${servlet.lib}" includes="${servlet.jarfile}"/>
|
||||
<fileset dir="${jsp.lib}" includes="${jsp.jarfile}"/>
|
||||
<fileset dir="${collections.lib}" includes="${collections.jarfile}"/>
|
||||
<fileset dir="${codec.lib}" includes="${codec.jarfile}"/>
|
||||
<fileset dir="${httpclient.lib}" includes="${httpclient.jarfile}"/>
|
||||
@@ -119,7 +125,7 @@
|
||||
|
||||
<target name="compile" depends="buildprep">
|
||||
<javac srcdir="src" destdir="buildwork" debug="${compile.debug}" optimize="${compile.optimize}"
|
||||
deprecation="${compile.deprecation}">
|
||||
deprecation="${compile.deprecation}" source="1.3" target="1.3">
|
||||
<classpath>
|
||||
<pathelement location="buildwork"/>
|
||||
<path refid="base.build.path"/>
|
||||
|
||||
Reference in New Issue
Block a user