Hi jay,
The better is if you see the example project we have:
The steps are:
2) mvn install (to check that everything works ok)
3) mvn eclipse:eclipse (to create a Eclipse project with the required libraries)
4) Import the project into eclipse (or refresh, if you already have it).
In any case, as a general case, what you have to do in order to have a Pangool project working with your project is to add the Pangool dependency to the pom.xml:
<dependency>
<groupId>com.datasalt.pangool</groupId>
<artifactId>pangool-core</artifactId>
<version>0.43.3</version>
</dependency>
And add the Hadoop dependency, depending on the version you want:
Iván