Robin Rigby pisze: > I'd really appreciate some help with debugging. I'm very new to Eclipse, > too. :-) > > More generally, it would be great to find some high quality advice on the > web site on problem solving in general, particularly on the POM and Spring. > There are now some very clear pages on the sitemap and writing and using > components. They are very welcome.
Your probably have imported your block to Eclipse using mvn eclipse:eclipse command which generates static Eclipse configuration. There is a better approach to integrate Maven project with Eclipse IDE. It's called q4e[1]. Before you install this plug-in make sure to: 1. delete your block from Eclipse workspace (without deleting block's files of course) 2. run mvn eclipse:clean in your block Then you can install q4e and import Maven project using File > Import > General > Maven 2 Project. The advantage of q4e is that it well integrates with Eclipse so for example, you can run your test cases from it being sure all classpath is set ok. It means that you will be able to debug test cases the same way as any other class in Eclipse. I hope that it helps you a little bit. [1] http://code.google.com/p/q4e/ -- Grzegorz Kossakowski Committer and PMC Member of Apache Cocoon http://reflectingonthevicissitudes.wordpress.com/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
