2010/7/1 Beto:
> 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?
The dependencies in click-extras is correct, it depend on click-nodeps
and maven will resolve the dependencies that click-nodeps have. The
problem is that you should not have a dependency on click.jar.
Click.jar is useful for people without dependency resolution software
(maven, ivy etc). Your projects pom should include
<dependency>
<groupId>org.apache.click</groupId>
<artifactId>click-nodeps</artifactId>
<version>...</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.click</groupId>
<artifactId>click-extras</artifactId>
<version>...</version>
<scope>compile</scope>
</dependency>
regards,
Finn