Inge Solvoll <inge.tapestry <at> gmail.com> writes: > > I'm using file synch in eclipse to copy the newly compiled files to > webapp/WEB-INF/classes. If the class is found there, it overrides the one in > the jar. > > On Fri, Jun 4, 2010 at 7:56 AM, Nicolas Bouillon <nicolas <at> bouil.org> wrote: > > > I'm very interested too if there is a solution to this problem. > > I solved it in a way - but I am not sure if it is the best way.
What I did resembles Inge's solution. I have setup in my pom.xml that the compilation output will go to the webapp target folder: <outputDirectory>../webapp/target/classes</outputDirectory> so each time I build components, the compilation outputs goes to the webapp target/classes folder. The maven script updates the intellij target directory, which means that if I either compile via maven or compile via intellij, the classes are outputted in the webapp, and thus reloaded in jetty. The problem is that the compiled classes are not always picked up by tapsetry, so I have to look a bit more into this. -Henrik --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org