Issue
Is there any way to add an jar file globally so that anyone can use it without configuring build paths again and again?
I have a external jar so when I import it it will look like this
C:\Users\Username\Path\external.jar
ProjectPath\external.jar
So that users in my github repo don't need to reconfigure again and again.
Solution
Please use Add JARs... instead of Add External JARs... for project-internal JARs.
Alternatively, you can use Maven or Gradle so that the JARs don't have to be part of the project.
Answered By - howlger
Answer Checked By - David Goodson (JavaFixing Volunteer)