The Long, Long Dependency Trail

2010-09-23 Thread Ichiro Furusato
Hello, I've been working with Wicket for about a week now and things were moving along all cruisy until I started adding Hibernate and Databinder dependencies into my POM. Then all hell broke loose and I seem to now find myself in the NoClassDefFoundError, then find and manually install jar cycle.

Re: The Long, Long Dependency Trail

2010-09-23 Thread Josh Kamau
I suggest you use hibernate 3.5+. it seems more organized adding hibernate-core , hibernate-annotations adds all the neccessary hibernate dependencies. I normally use hibernate JPA entity manager and all i add is one dependency for hibernate-entitymanager. Regards. On Thu, Sep 23, 2010 at 3:28 P

Re: The Long, Long Dependency Trail

2010-09-23 Thread Bas Gooren
10 2:44 PM Subject: Re: The Long, Long Dependency Trail I suggest you use hibernate 3.5+. it seems more organized adding hibernate-core , hibernate-annotations adds all the neccessary hibernate dependencies. I normally use hibernate JPA entity manager and all i add is one dependency for

Re: The Long, Long Dependency Trail

2010-09-23 Thread Martijn Dashorst
oss maven repo > (which I do not see in your pom.xml): > > >  jboss >  https://repository.jboss.org/nexus/content/repositories/releases > > > Sebastian > > - Original Message - From: "Josh Kamau" > To: > Sent: Thursday, September 23, 2010

Re: The Long, Long Dependency Trail

2010-09-23 Thread Bas Gooren
Sent: Thursday, September 23, 2010 2:49 PM Subject: Re: The Long, Long Dependency Trail I would not add those external repositories to your own pom, but rely on a repository manager instead to retrieve the dependencies. See: * artifactory * nexus * archiva Martijn On Thu, Sep 23, 2010 at 2:48 PM, Ba

Re: The Long, Long Dependency Trail

2010-09-23 Thread Thomas Kappler
On 09/23/10 14:28, Ichiro Furusato wrote: Hello, I've been working with Wicket for about a week now and things were moving along all cruisy until I started adding Hibernate and Databinder dependencies into my POM. Then all hell broke loose and I seem to now find myself in the NoClassDefFoundErro

Re: The Long, Long Dependency Trail

2010-09-23 Thread Don Ferguson
If you want to stick with Ant, try Ivy instead of Maven. It can read Maven pom files, and has a decent eclipse plug-in. On Sep 23, 2010, at 5:28 AM, Ichiro Furusato wrote: > . I'm guessing I must be doing something > wrong, as I'm still pretty new to Maven, being a longstanding Ant > person.

Re: The Long, Long Dependency Trail

2010-09-23 Thread nino martinez wael
if I where you i'd go use one of the legup archetypes or wicket stuff iolite (although a bit outdated) and build on those, they provide the boilder plate so you dont have to write it. Use a artifact manager like nexus or artifactory.. As for the rest of it, I wrote an article here : http://ninomar

Re: The Long, Long Dependency Trail

2010-09-23 Thread Ichiro Furusato
Thanks very much all for your helpful replies. I'll try to answer all at once: Josh, I'm using Hibernate 3.5.6-Final. I'm going to clean out my .m2 repository of the Hibernate stuff, then try Bas' suggestion and see if it works without me having to manually install the jars to my local repository