3

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
  • 34,719
  • 24
  • 185
  • 251
Mubarak Awal
  • 379
  • 4
  • 21

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
  • 15,591
  • 2
  • 48
  • 65
1

You could use the -cp compiler option.

leftbit
  • 829
  • 1
  • 7
  • 17