Looking at Google gson 2.8.5 , I see several jars are distributed here https://repo1.maven.org/maven2/com/google/code/gson/gson/2.8.5/
- gson-2.8.5-javadoc.jar
- gson-2.8.5-sources.jar
- gson-2.8.5.jar
By reading other posts, I understand that sources.jar contains source code, but jar contains the compiled class files.
- Does this mean that, given the sources.jar, I can generate the jar myself? What is the general relationship between these three jars?
- What is javadoc.jar? Does it only contain documentation, or source code / compiled classes too?