I am using IntelliJ for a Java project. My project structure looks something like this:
Crawler
|----.idea
|----lib
jsoup-1.7.3.jar
|----out
|----production
|----Crawler
|----App
App.class
|----src
|----App
App.java
Crawler.iml
Now when I run the app from within IntelliJ, it loads the external lib and runs perfectly.
How should I run it from the command-line?