Showing posts with label apache commons. Show all posts
Showing posts with label apache commons. Show all posts

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 ;)

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

Solution for maven 2.x and Apache commons fileupload 1.2.1

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

<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2.1</version>
</dependency>


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