Hello again

I'll try to explain it one more time.

The dependency that you have specified in your POM does not exist.

I'm not sure which dependency it is that you want. If it is "ehcache"
you want, then your dependency should look like this:

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-ehcache</artifactId>
            <version>3.3.1.GA</version>
        </dependency>

If it is "hibernate-core" you want, then your dependency should look
like this:

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>3.3.1.GA</version>
        </dependency>

You can browse the available Hibernate artifacts in the Central
repository at this URL:

http://repo1.maven.org/maven2/org/hibernate/



The reason that Maven Dependency Plugin cannot do it's job, and present
the tree, is because the tree is broken.


On 2011-09-21 18:38, kapila wrote:
> Thanks but I have tried to see that with debug option X and U . Nothing I 
> could infer. But don't understand why I can't get dependency tree print.
> 
> Pls help.
> Sent from BlackBerry® on Airtel
> 
> -----Original Message-----
> From: Jörg Schaible [via Maven] <[email protected]>
> Date: Wed, 21 Sep 2011 09:32:21 
> To: kapila<[email protected]>
> Subject: Re: mvn dependency tree not working
> 
> 
> 
> kapilanarang wrote:
> 
>> Thanks Dennis for reply.
>> path in central is correct & in specific pom - its mentioned correctly.
>>               <dependency>
>>                         <groupId>org.hibernate.ehcache</groupId>
>>                         <artifactId>ehcache</artifactId>
>>                         <version>3.3.1.GA</version>
>>                 </dependency>
>>
>> whereas its calling for path-
>> org.hibernate.ehcache:hibernate-core:jar:3.3.1.GA
>> what i feel is some1 (internal) has wrongly mentioned the path in one of
>> the dependent jar's. I need to dig which jar is causing this issue. but
>> unable to find the dependency jars'
>>
>> pls advice to find that?
> 
> Start with -X option
> 
> - Jörg
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
> 
> 
> 
> _______________________________________________
> If you reply to this email, your message will be added to the discussion 
> below:
> http://maven.40175.n5.nabble.com/mvn-dependency-tree-not-working-tp4822352p4827004.html
> 
> To unsubscribe from mvn dependency tree not working, visit 
> http://maven.40175.n5.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4822352&code=a2FwaWxhLmtvaGxpQGdtYWlsLmNvbXw0ODIyMzUyfDk2MjU3ODY3Ng==
> 
> 
> --
> View this message in context: 
> http://maven.40175.n5.nabble.com/mvn-dependency-tree-not-working-tp4822352p4827017.html
> Sent from the Maven - Users mailing list archive at Nabble.com.


-- 
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to