Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Henrique Prange
Hi Elizabeth, You don't need to build it. The latest version of Houdah framework is available in WOCommunity repository [1]. Configure the Maven settings as described in this guide [2], and add the following dependency to the pom.xml: dependency groupIdcom.houdah/groupId

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Elizabeth Lynch
Hi Henrique Thanks for getting back to me. I already had the .m2 settings.xml file present as per your instructions, so I therefore simply deleted my own com.houdah directory from the repository, and added the dependency to my project's pom file. On doing mvn clean package, the Houdah

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Henrique Prange
Hi Elizabeth, Looks like a problem with version ranges. Your repository metadata is probably corrupted. You have two options: 1) Go to the ~/.m2/repository/com/webobjects/* directories and delete every maven-metadata* files. 2) Add the Houdah dependency with the exclusion configuration as

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Henrique Prange
Hi Elizabeth, Looks like a problem with version ranges. Your repository metadata is probably corrupted. You have two options: 1) Go to the ~/.m2/repository/com/webobjects/* directories and delete every maven-metadata* files. 2) Add the Houdah dependency with the exclusion configuration as

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Elizabeth Lynch
Hi Henrique If I use the exclusion, then maven builds the package ok, but when I run with jetty:run-war I get an exception: Caused by: java.lang.ClassCastException: com.webobjects.foundation.NSLog$Log4JLogger cannot be cast to com.webobjects.foundation.NSLog$PrintStreamLogger at

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Henrique Prange
Hi Elizabeth, On 27/06/2011, at 18:54, Elizabeth Lynch wrote: Hi Henrique If I use the exclusion, then maven builds the package ok, but when I run with jetty:run-war I get an exception: Caused by: java.lang.ClassCastException: com.webobjects.foundation.NSLog$Log4JLogger cannot be

Re: Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-27 Thread Henrique Prange
Hi Elizabeth, Sorry for answering in a hurry. I was leaving the office. If you take a look at the NSLog javadoc, you will find methods to change the out, err and debug loggers. Sent from my iPhone On 27/06/2011, at 20:19, Henrique Prange hpra...@gmail.com wrote: Hi Elizabeth, On

Maven newbie - problem with building and including the Houdah frameworks in my project

2011-06-26 Thread Elizabeth Lynch
Hi I have recently taken on support of a WebObjects project which builds and deploy a war file from the command line using maven and jetty (and is in Eclipse for code development). I installed maven and the existing project code on my usual WO 5.4 development system and everything runs