1.) I have a Project1 with this ivy dependency :
<dependency org="xalan" name="serializer" rev="2.7.1" transitive="false" conf="compile->default" />
This project brings serializer.jar (just only this jar, OK! )
2.) In a second one Project (Proyect2) i put the next dependency :
<dependency org="com.net" name="Project1" rev="latest.integration" conf="default->default;compile->compile;runtime->runtime" transitive="true">
</dependency>
This "Project 2" brings :
- Project 1
- Serializer.jar
xml-apis.jar
Despite of putting transite to false in xalan dependency.
I haven't this behaviour in my Eclipse + IVEDe environment, just only with Nexus and Maven.... It seems to be wrong because on Project1 i set xalan transitive to false.