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.
            Asked
            
        
        
            Active
            
        
            Viewed 1,343 times
        
    2 Answers
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
- 
                    can you please give a summary of how i'll use that – Mubarak Awal Mar 27 '18 at 14:39
 
    