I have created a new class library and I’ve defined it in the global libraries with the name Encryption. I’ve also added the jar file in this newly created class library. My question is how do I use the this jar file in my other projects now? Do I need to import Encryption in the class I am referencing it from?
This is the print screen of how I’m trying to add jar file in dependency folder and the print screen of the project properties folder:-

I have created a new class library and I’ve defined it in the global
Share
Instead of adding the jar via “add local resources” after creating the dependency, I tried using the option “manually install artifact”. This allowed jar file to become available in my dependencies and I could use the class files by using a simple import statement referencing the path to the class files in that jar file.