Reputation: 1067
After reading this question, I don't understand how we can find the configuration of the dependencies. More precisely, in the example below, how retrieve the configurations (proxool,oscache) of hibernate ?
<dependency org="hibernate" name="hibernate" rev="2.1.8" conf="default->proxool,oscache"/>
Upvotes: 0
Views: 89
Reputation: 1994
You have to look into hibernate's ivy.xml to see the list of all published configurations. Either you resolve the dependency and take a look into your local cache, or you can view the ivy.xml directly in the repository you are using.
Note: When you resolve from a maven repo there will be some translation/mapping from the POM to the ivy.xml.
Upvotes: 1