Here is a brief summary:
I have a large project on Eclipse with numerous classes and Maven dependencies. This java class is part of a script I plan to make. Basically, this collection of classes will be called by the script using java and javac, or whatnot, and in turn, the program will output many JSON files to be interpreted by an HTML file.
What is the best way to do this? I tried using JARS and running them independently, but for some reason, the Maven dependencies were not included, so some of the classes, like JSONObject, did not work.
As you can probably tell, I am a relatively beginner to development, so I'd appreciate any help. Thanks in advance.