Reputation: 634
I am trying to test a java library I found online. I'm testing each component separately, and they work correctly on the command line when I do javac *.java
followed by java test
. This works perfectly fine, but if I try to build the same test.java
file in IntelliJ 2017, it seems to build other irrelevant source files also present in the project and fails since they require dependencies that are not present (but I just want to compile and run test.java
.)
How can I resolve this?
Upvotes: 0
Views: 120
Reputation: 17363
I don't know anything about the library you are using, so this may or may not work for you...
See the screen shot below for clarification.
Do you see similar entries?...
Upvotes: 1