18 April 2011

how to add dependency for apache commons io to pom.xml?

Solution for maven 2.x and Apache commons io 2.0.1

1. In dependencies tag section you need add this few line:

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version>
</dependency>


2.0.1  if new version will be released, then you need  change this to new version ;)

No comments:

Post a Comment