In the TDK, the default build.xml that gets created has newapp all
over it, which really only makes a difference when you try to 'build
jar' on your project. Here's a patch.
Index: build.xml
===================================================================
RCS file:
/products/cvs/turbine/tdk/src/share/common/build/build.xml,v
retrieving revision 1.5
diff -u -r1.5 build.xml
--- build.xml 2000/11/18 02:52:29 1.5
+++ build.xml 2000/11/18 16:03:04
@@ -1,15 +1,15 @@
<?xml version="1.0"?>
<!-- Build file for application -->
-<project name="newapp" default="compile" basedir=".">
+<project name="@NEWAPP@" default="compile" basedir=".">
<!-- Give user a chance to override without editing this file
(and without typing -D each time it compiles it) -->
<property file="${user.home}/.ant.properties" />
- <property name="Name" value="newapp"/>
+ <property name="Name" value="@NEWAPP@"/>
<property name="version" value="0.1"/>
- <property name="project" value="newapp"/>
+ <property name="project" value="@NEWAPP@"/>
<property name="build.compiler" value="classic"/>
<property name="build.dest" value="../classes"/>
<property name="src.dir" value="../src"/>
__________________________________________________
Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays!
http://calendar.yahoo.com/
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]