I have a project in which i use Apache Netbeans IDE 11.1 and I want to use Facebook API by adding "restFB.jar" to my project
in previous versions of NetBeans, there was "Libraries" category in Project->Properties
but now in Apache Netbeans IDE 11.1 I can't find the "Libraries" Category .
How can I Add "restFB.jar" to my project in Apache Netbeans IDE 11.1
The absence of the Category named Libraries for your project is nothing to do with NetBeans 11.1. Maven projects in any version of NetBeans will not have a Category named Libraries because it is not needed. Instead, your application's dependencies are specified within pom.xml.
You can easily verify this by using the NetBeans project wizard:
So to include restFB.jar in your Maven project:
<dependency>
entry you need to add to pom.xml will be displayed on the Maven tab.This is the Maven web page you need to copy the <dependency>
entry:
There are several sample RestFB examples on GitHub which may be helpful. If you get stuck on your own project, try building and running those to help understand and isolate any other issues with your project.