4

Can I add a jar file to a Java project I created on my desktop manually without using gradle, Maven or any dependency management tool or any Java IDE? Currently the project is a single folder containing 5 java files and I run it from the terminal. Is it possible to use a jar dependency in this kind of project. If Yes, please show me how.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Mubarak Awal
  • 439
  • 5
  • 23

2 Answers2

2

Look at this answer

Supposing you have in the root directory of your project a Test.jar and a lib directory containing jar files :

Windows

java -cp "Test.jar;lib/*" my.package.MainClass

Unix

java -cp "Test.jar:lib/*" my.package.MainClass
ToYonos
  • 16,469
  • 2
  • 54
  • 70
1

You could use the -cp compiler option.

leftbit
  • 848
  • 1
  • 7
  • 18