[Pfc-prolog-cvs] prolix build.xml,1.24,1.25
Status: Beta
Brought to you by:
ivanfrade
From: <iva...@us...> - 2003-07-11 11:30:11
|
Update of /cvsroot/pfc-prolog/prolix In directory sc8-pr-cvs1:/tmp/cvs-serv30601 Modified Files: build.xml Log Message: Added basic struts structure Index: build.xml =================================================================== RCS file: /cvsroot/pfc-prolog/prolix/build.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** build.xml 11 Jul 2003 09:03:06 -0000 1.24 --- build.xml 11 Jul 2003 11:30:07 -0000 1.25 *************** *** 88,91 **** --- 88,92 ---- <property name="lib.dir" value="${basedir}/lib"/> + <property name="lib.web.client.dir" value="${lib.dir}/web-client"/> <property name="build.dir" value="${basedir}/build"/> *************** *** 97,100 **** --- 98,102 ---- <property name="dist.dir" value="${basedir}/dist"/> <property name="src.web.dir" value="${basedir}/web"/> + <property name="struts.lib.dir" value="${lib.dir}/struts"/> <!-- Removed properties *************** *** 122,127 **** </path> ! <path id="base.path"> <path refid="xdoclet.path"/> <pathelement location="${jboss.client}/jboss-j2ee.jar" /> <pathelement location="${jboss.client}/jnp-client.jar" /> --- 124,143 ---- </path> ! <path id="struts.path"> ! <pathelement location="${struts.lib.dir}/commons-beanutils.jar"/> ! <pathelement location="${struts.lib.dir}/commons-lang.jar"/> ! <pathelement location="${struts.lib.dir}/struts.jar"/> ! <pathelement location="${struts.lib.dir}/commons-collections.jar"/> ! <pathelement location="${struts.lib.dir}/commons-logging.jar"/> ! <pathelement location="${struts.lib.dir}/struts-legacy.jar"/> ! <pathelement location="${struts.lib.dir}/commons-digester.jar"/> ! <pathelement location="${struts.lib.dir}/commons-validator.jar"/> ! <pathelement location="${struts.lib.dir}/commons-fileupload.jar"/> ! <pathelement location="${struts.lib.dir}/jakarta-oro.jar"/> ! </path> ! ! <path id="base.path"> <path refid="xdoclet.path"/> + <path refid="struts.path"/> <pathelement location="${jboss.client}/jboss-j2ee.jar" /> <pathelement location="${jboss.client}/jnp-client.jar" /> *************** *** 276,280 **** destdir="${build.classes.dir}" debug="on" ! deprecation="off" optimize="on" classpathref="base.path" --- 292,296 ---- destdir="${build.classes.dir}" debug="on" ! deprecation="on" optimize="on" classpathref="base.path" *************** *** 346,350 **** </fileset> <fileset ! dir="${lib.dir}" includes="WEB-INF/lib/**" > --- 362,366 ---- </fileset> <fileset ! dir="${lib.web.client.dir}" includes="WEB-INF/lib/**" > |