leif 02/04/03 23:06:51
Modified: all/examples/jdbcdatasource build.xml
Log:
Fix the jdbc example... Someone broke it along the way..
Revision Changes Path
1.3 +5 -5
jakarta-avalon-excalibur/all/examples/jdbcdatasource/build.xml
Index: build.xml
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/all/examples/jdbcdatasource/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.xml 23 Mar 2002 13:04:25 -0000 1.2
+++ build.xml 4 Apr 2002 07:06:51 -0000 1.3
@@ -4,7 +4,7 @@
<!-- Container Example build file!
-->
<!-- =======================================================================
-->
-<project name="container" default="main" basedir=".">
+<project name="jdbcdatasource" default="main" basedir=".">
<!-- ================================================================ -->
<!-- Local user-defined build properties. -->
@@ -14,15 +14,15 @@
<!-- verify this. This file should be a normal Java properties file. -->
<property file="${user.home}/.ant.properties" />
- <property name="name" value="container"/>
- <property name="Name" value="Container"/>
+ <property name="name" value="jdbcdatasource"/>
+ <property name="Name" value="jdbcDataSource"/>
<!-- Directories build by ant -->
<property name="build.dir" value="${basedir}/build"/>
<property name="build.classes.dir" value="${build.dir}/classes"/>
<property name="build.javadocs.dir" value="${build.dir}/javadocs"/>
<property name="lib.dir" value="${basedir}/lib"/>
- <property name="data.dir" value="${basedir}/data"/>
+ <property name="sqldata.dir" value="${basedir}/sqldata"/>
<!-- Existing directories -->
<property name="src.dir" value="${basedir}/src"/>
@@ -98,7 +98,7 @@
<!-- Main target
-->
<!-- ===================================================================
-->
<target name="main" depends="jar" description="build the runnable
application">
- <mkdir dir="${data.dir}"/>
+ <mkdir dir="${sqldata.dir}"/>
</target>
<!-- ===================================================================
-->
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>