Check the groupId in the exclusion, you have specified it as
"org.apache.poi" before version 3.0 it use to be only "poi" so your
exclusion should look like,
<exclusions>
<exclusion>
<groupId>poi</groupId>
<artifactId>poi</artifactId>
</exclusion>
</exclusions>
2010/9/17 Pradnya Gawade<[email protected]>:
Thanks Nayan.
I used Maven2 plugin inside eclipse Helios which gives you an option
I suppose you're using m2eclipse. Ensure you installed the Maven POM
Editor so you can see the dependency graph.
You can even exclude the dependency from the graph. It's a life-saver IMO :-)
Antonio
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]