atom feed6 messages in org.apache.struts.devRe: [shale] Problems with mail reader
FromSent OnAttachments
Sean SchofieldJan 21, 2005 6:10 am 
James MitchellJan 21, 2005 7:09 am 
James MitchellJan 21, 2005 7:13 am 
Sean SchofieldJan 21, 2005 7:18 am 
James MitchellJan 21, 2005 8:49 am 
Craig McClanahanJan 21, 2005 9:12 am 
Subject:Re: [shale] Problems with mail reader
From:James Mitchell (jmit@apache.org)
Date:Jan 21, 2005 7:09:27 am
List:org.apache.struts.dev

The ant build for the mailreader apps has not been updated yet (in progress). This is a moving target, so don't plan on doing this for a week or more. I'm moving as fast as I can.

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-all

This 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.

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