Update of /cvsroot/rssmailer/commissie
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12750
Modified Files:
.classpath
Added Files:
build.xml
Log Message:
Index: .classpath
===================================================================
RCS file: /cvsroot/rssmailer/commissie/.classpath,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** .classpath 28 Jul 2004 13:21:30 -0000 1.4
--- .classpath 4 Apr 2005 19:53:43 -0000 1.5
***************
*** 5,8 ****
--- 5,14 ----
<classpathentry kind="lib" path="src/webapp/WEB-INF/lib/log4j.jar"/>
<classpathentry kind="lib" path="lib/j2ee.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/cos.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/dbforms_v1_1_2.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/jakarta-oro-2.0.6.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/mysql-connector-java-3.0.16-ga-bin.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/PoolMan.jar"/>
+ <classpathentry kind="lib" path="src/webapp/WEB-INF/lib/commons-logging-1.0.4.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
--- NEW FILE: build.xml ---
<project name="commissie" basedir="." default="dist">
<property name="tomcat.home" value="C:\Program Files\Apache Software Foundation\Tomcat 5.5" />
<property name="version" value="3.0"/>
<property name="webapps.dir" value="${tomcat.home}/webapps" />
<property name="src" value="src"/>
<property name="build" value="build"/>
<property name="war.dir" value="${build}"/>
<property name="war.name" value="commissie-${version}.war"/>
<property name="war.file" value="${war.dir}/${war.name}"/>
<target name="war">
<mkdir dir="${build}"/>
<war basedir="${src}/webapp" webxml="${src}/webapp/WEB-INF/web.xml" destfile="${war.file}">
<exclude name="**/web.xml"/>
</war>
</target>
<target name="dist" depends="war">
</target>
<target name="deploy" depends="dist">
<unwar src="${war.file}" dest="${webapps.dir}/commissie"/>
</target>
<target name="clean">
<delete dir="${build}"/>
</target>
</project>
|