hi benoit, Benoit Bleuze schrieb: > I remind you that it built fine using the mvn command line. > Being a newbie at maven (eclipse or command line), I was wondering if > there was any configuration option hidden somewhere that I might have > overlooked. > Or maybe there is no recent enough version of the maven plug in for > Eclipse, thus the command line advice given by Martin to Buddy? > in my experience the maven integration for eclipse is evolving but still has it's rough edges. i'am not aware of a stable release that is able to build the project. just stick with the stand-alone maven for now or try some devel builds of the plugin or try to "integrate" maven 2.x following this guide:
http://maven.apache.org/guides/mini/guide-ide-eclipse.html some additional devel tips: - to save time on building the whole suite disable the "dist" module (useless right now) in the master pom: <modules> <module>common</module> <module>server</module> <module>manager</module> <!-- <module>dist</module>--> </modules> - if you want to run/debug the manager only open the run/debug dialog and use "org.openthinclient.console.ConsoleFrame" as main class with "-Xmx265M" as VM arguments - if you want to debug server components add this to your JAVA_OPTS in the appropriate server start script (jboss/bin/run.{bat,sh} "-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y" and create a remote java application in eclipse with the following settings: Connection Type: Standard (Socket Attach) Host: localhost (or name of desired server) Port: 8787 you will find comments for remote debugging in jboss/bin/run.bat as well. > OTC looks full of potential and we are looking into adding a few feats > that we have up our sleeves over here that would benefit the community. > sounds great! tell me about these features ;-) happy hacking, martin ------------------------------------------------------------------------------ SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada. The future of the web can't happen without you. Join us at MIX09 to help pave the way to the Next Web now. Learn more and register at http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/ _______________________________________________ The Open Source Thin Client Solution http://openthinclient.org [email protected] https://lists.sourceforge.net/lists/listinfo/openthinclient-developer
