Wednesday 1 September 2010

Add RestFB jars to maven

First download the restfb api and run the following maven command from the extracted dir.

mvn install:install-file -Dfile=restfb-1.5.3.jar 
-DgroupId=com.restfb -DartifactId=restfb -Dversion=1.5.3 -Dpackaging=jar -DgeneratePom=true

this installs the jar in your local mvn repo, and then add the following dependency to your pom


  com.restfb
  restfb
  1.5.3

1 comment:

Unknown said...

My eclipse editor was complaining about the capitalization of the groupId and artifactId elements. I had to use the following (notice the capital "I" in each one) to avoid XML schema violation warnings:

<dependency>
   <groupId>com.restfb</groupId>
   <artifactId>restfb</artifactId>
   <version>1.5.4</version>
</dependency>