I'm not a maven user so don't know the details, but click-extras depends on
click-core correct? And
the pom.xml reflects this. Are you saying this isn't correct? If not, how will
maven know to import
Click-core when specifying Click-extras?
I'm trying to clean up my project and see that while using
click-extras.jar we get click-nopeds.jar as well.
Can anyone explain this, since we already have click.jar in the project?
I'm not a Maven expert either, but to make it work you need to exclude
"click-nodeps" (since click-extras depends on it).
This way you can use click.jar + click-extras.jar only (since click.jar
contains all the required dependent classes - it's very simple and
practical).
Take a look at the click-jquery pom.xml:
http://code.google.com/p/click-jquery/source/browse/trunk/click-jquery/click-jquery/pom.xml
Adrian.