LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: wartemw on October 14, 2016, 07:58:53

Title: maven not loaded source and doc
Post by: wartemw on October 14, 2016, 07:58:53
how to load them in Maven is not manually
Title: Re: maven not loaded source and doc
Post by: Kai on October 14, 2016, 08:25:00
Google "Maven download sources":
- http://stackoverflow.com/questions/5780758/maven-always-download-sources-and-javadocs

Essentially, you want a Maven profile in your Maven ~/.m2/settings.xml like described in the link.
But every IDE downloads the sources automatically, once you navigate into a class.
Title: Re: maven not loaded source and doc
Post by: wartemw on October 16, 2016, 13:41:04
Quote from: Kai on October 14, 2016, 08:25:00
Google "Maven download sources":
- http://stackoverflow.com/questions/5780758/maven-always-download-sources-and-javadocs

Essentially, you want a Maven profile in your Maven ~/.m2/settings.xml like described in the link.
But every IDE downloads the sources automatically, once you navigate into a class.
thanks