OooOOoH! I feel like I may be too late, but maven 2 + jetty + tapestry 4 makes for more fun than you can shake a stick at!
No kidding, setup a maven web project project. Now youve removed everything except for the java language and compilation. We lke the java language, but compilation... Then, setup the jetty6 plugin. No more compilation. Drives like a ferarri. No eject button in this model. You write java code and run mvn compile and the app is reloaded. If you modify a tapestry template the template change is visible immediately. Theres a fair amount between here and there but Ill be happy to help in anyway I can -- you need only message me off list. The relevant plugin config is: <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty6-plugin</artifactId> <version>6.0.0beta17</version> <configuration> <scanTargets> <scanTarget>src/main/resources/</scanTarget> </scanTargets> <!-- u wont need this unless youre develping on windows --> <webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml> <systemProperties> <systemProperty> <name>net.sf.ehcache.disabled</name> <value>true</value> </systemProperty> <systemProperty> <name>org.apache.tapestry.disable-caching</name> <value>false</value> </systemProperty> </systemProperties> <scanIntervalSeconds>10</scanIntervalSeconds> </configuration> </plugin> </plugins> Umm, ok, hope your search goes well. Josh On 8/21/06, Marcus <[EMAIL PROTECTED]> wrote:
try http://www.sysdeo.com/sysdeo/eclipse/tomcatplugin install plugin and configure parameters in eclipse, after configure "your-project" properties and with 1 clique you will deploy app into tomcat.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]