As an alternative for now, you can build all of the apps with Maven. Installing Maven is trivial, it's the same as installing Ant. Once you do that, (assuming you have the svn client already installed and did a co on the 'current' pseudo branch of Struts) you can build core, taglib, and then apps.
Like this: (from "current")
cd core
ant dist (this generates the .tld and copies needed files for apps)
maven jar:install
cd ../taglib
maven jar:install
cd ../apps
svn up (I just committed a small fix to
the taglib dependency....my fault, sorry)
maven apps:build-allThis builds 3 apps (so far) blank mailreader examples
each subproject has a target where you'll find what you need.
I run the webapps straight from where they are built...like this (part of my conf/server.xml in tomcat)
...
...
<Context path="/mailreader"
docBase="D:/cygwin/home/jmitchell/svn/struts/current/apps/shared/target/mailreader"
debug="0"/> <Context path="/blank"
docBase="D:/cygwin/home/jmitchell/svn/struts/current/apps/blank/target/blank"
debug="0"/> <Context path="/examples"
docBase="D:/cygwin/home/jmitchell/svn/struts/current/apps/examples/target/examples"
debug="0"/>
...
...There is still a lot of work to do on the repository. I am moving as fast as time allows.
I do want to thank you for trying things out, this really helps us iron out issues like this.
-- James Mitchell Software Engineer / Open Source Evangelist EdgeTech, Inc. 678.910.8017 AIM: jmitchtx
----- Original Message ----- From: "Sean Schofield" <[EMAIL PROTECTED]>
To: "Struts Developers List" <[email protected]>
Sent: Friday, January 21, 2005 9:10 AM
Subject: [shale] Problems with mail reader
I'm having troule running the nightly build of mailreader (which doesn't seem to be beeing built nightly.) Also, I'm having trouble building the mailreader myself from the current source. I seem to recall there was some reorganization with the mailreader going on.
Ant is looking for a mailreader.jar file. Where can I find this? Is it something that I have to build from the main struts project?
Any help (or the WAR file itself) would be appreciated.
Thanks, sean
--------------------------------------------------------------------- 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]
