I have a .zip file that contains a package that holds the different source code files generated from http://www.jsonschema2pojo.org/.
I initially thought I'd be able to add the generated code (contained in .zip file) to my build path directly, however I discovered that I cannot work with .java files in my project, as importing the .zip file into my project shows the package path to be empty.
It turns out that I cannot use this .zip file because it is full of .java source files and it has no .class files.. which is why when I attempt to reference the file from my project, it says it can't resolve it to a type.
I know I can just go through the zip file, create the package and classes and copy/paste the source code, compile all of that, and then reference that in my program. However, there has to be an easier way than just doing all of this manually.
How do I convert a .zip file full of source into a .zip file full of class files directly referenceable from my Eclipse?