On Thu, Oct 30, 2008 at 11:04 AM, Simon Laws <[EMAIL PROTECTED]>wrote:
> > > On Thu, Oct 30, 2008 at 10:56 AM, Jacek Laskowski <[EMAIL PROTECTED]>wrote: > >> On Wed, Oct 29, 2008 at 1:56 PM, Jacek Laskowski <[EMAIL PROTECTED]> >> wrote: >> >> > Just checked out the sources for sca-java and run across BUILD >> > FAILURE: package org.jdom does not exist for modules\binding-feed. >> > What's wrong? >> >> Right after I applied the following patch I could build the sources. >> Is it only me who runs across it? >> >> [EMAIL PROTECTED] /cygdrive/c/oss/tuscany-sca/modules/binding-feed >> $ svn diff pom.xml >> Index: pom.xml >> =================================================================== >> --- pom.xml (revision 709106) >> +++ pom.xml (working copy) >> @@ -140,6 +140,12 @@ >> </exclusion> >> </exclusions> >> </dependency> >> + >> +<dependency> >> + <groupId>org.jdom</groupId> >> + <artifactId>jdom</artifactId> >> + <version>1.1</version> >> +</dependency> >> >> </dependencies> >> >> Jacek >> >> -- >> Jacek Laskowski >> Notatnik Projektanta Java EE - http://www.JacekLaskowski.pl >> > > Hi Jacek > > I have to do a full build a little later so I'll let you know if I see the > same. > > Simon This is working ok for me. Looking at the pom.xml's binding-feed has a dependency on rome, and the rome pom.xml defines a dependency on jdom, so jdom should be pulled in as a transitive dependency. Not sure why this isn't happening for you, which version of Maven are you using, i'm on 2.0.7? ...ant
