Hi,
I found two small problems in the first minute of using the new TDK.
I did this:
- downloaded the new tdk and unzipped it
- edited build.properties and changed all references to "newapp" to "testapp"
- called build.bat
I got this error
BUILD FAILED
Target `234' does not exist in this project.
After a bit of looking around I found the problem in the build.bat file where the
parameters for Ant each have
a "%" too much. The patch is attached below.
Then I tried to startup Catalina (just to see what would happen, I know the new app
wasn't ready yet) and it
immediately crashed with this exception:
java.lang.IllegalArgumentException: Document base ..\webapps\newapp does not exist or
is not a readable
directory
Which is caused by a hardcoded reference to the "newapp" context in the server.xml
file of Catalina. I guess
you are forcing people to use the "newapp" name but I generally use the newapp tool to
generate a skeleton for
a new app (duh) and I would like to name it something else... isn't that what the
property file is for ?
So I don't know if that reference has to be removed but I'm pretty sure I'm not the
only one to remove it
immediately...
Regards,
Age
<PATCH>
Index: build.bat
===================================================================
RCS file: /home/cvspublic/jakarta-turbine-tdk/src/build.bat,v
retrieving revision 1.2
diff -u -r1.2 build.bat
--- build.bat 2001/05/07 15:50:43 1.2
+++ build.bat 2001/05/15 00:35:38
@@ -19,7 +19,7 @@
set CLASSPATH=%CLASSPATH%;.\lib\ant.jar
set CLASSPATH=%CLASSPATH%;.\share\lib\xerces-1.3.0.jar
-%JAVA_HOME%\bin\java.exe -classpath "%CLASSPATH%" org.apache.tools.ant.Main %1% %2%
%3% %4%
+%JAVA_HOME%\bin\java.exe -classpath "%CLASSPATH%" org.apache.tools.ant.Main %1 %2 %3
+%4
goto end
</PATCH>
> Hi,
>
> Everything is ready for download. There are new versions of the TDK
> and a stand-alone version of Torque that can build and compile
> all generated sources. Village is now included in the stand-alone
> version.
>
> This is the first in a series of three betas. The only thing that
> will change noticeably is the the documentation and possibly
> some better examples.
>
> Everything can be found here:
>
> http://jakarta.apache.org/builds/jakarta-turbine/release
>
> Any and all feedback is welcome! Hopefully we can
> clean up any loose ends by the release on June 4th.
>
> Enjoy!
>
> --
> jvz.
>
> Jason van Zyl
> [EMAIL PROTECTED]
>
> http://jakarta.apache.org/velocity
> http://jakarta.apache.org/turbine
> http://jakarta.apache.org/commons
> http://tambora.zenplex.org
>
> "First, the taking in of scattered particulars under one Idea,
> so that everyone understands what is being talked about ... Second,
> the separation of the Idea into parts, by dividing it at the
> joints, as nature directs, not breaking any limb in half as a
> bad carver might."
>
> Plato, Phaedrus (Notes on the Synthesis of Form by Christoper Alexander)
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]