Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Yunhua Sang
Or you can create a class as following which you can found in the Tapestry source code, then create a run/debug configuration on it. It's very handy when you're working on multiple Maven modules in a project. import org.apache.tapestry5.test.Jetty7Runner; public class RunJetty { public static

Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Jon Williams
I'm working in Idea 11, but I doubt this has changed in 12... Using this method, you will NOT need to execute maven from the command line. It's all in Idea. Does your application have a pom.xml? If so you can 1. Create a new project, then create a new module by importing your maven config (pom.xml

Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Taha Hafeez Siddiqi
I use mvn jetty:run or ./gradlew jettyRun for running a jetty instance and then do a Cmd + F9 in Intellij Idea to refresh changes. It works well for me. (Thanks Josh! for suggesting this) On 11-Apr-2013, at 12:16 PM, Angelo Chen wrote: > Hi, > > how to run Tapestry5 app from Intellij IDEA 12

Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Thiago H de Paula Figueiredo
On Thu, 11 Apr 2013 03:46:33 -0300, Angelo Chen wrote: Hi, Hi! how to run Tapestry5 app from Intellij IDEA 12? thanks, In the exact same way you'd run any other Java Servlet API-based webapp, but now that's something off-topic. -- Thiago H. de Paula Figueiredo -

Re: how to run tapestry5 app from Intellij 12

2013-04-11 Thread Stephan Windmüller
On 11.04.2013 08:46, Angelo Chen wrote: > how to run Tapestry5 app from Intellij IDEA 12? thanks, You have to setup a web container, e.g. Apache Tomcat or Jetty. Then select the artifacts you want to deploy and start the container with IDEA. http://www.jetbrains.com/idea/webhelp/run-debug-config

how to run tapestry5 app from Intellij 12

2013-04-10 Thread Angelo Chen
Hi, how to run Tapestry5 app from Intellij IDEA 12? thanks, A