Hi, I would like to add generation of sources jars to the lwjgl build, this would allow people to add view source support to their IDEs with minimum hassle.
For example have a:
- lwjgl-sources.jar with the matching sources of lwjgl.jar
- lwjgl_util-sources.jar ... lwjgl_util.jar
- etc.
this is way easier than having to download the sources distribution, joining the generated sources with the common ones, and filtering by package to generate all the sources jars (or not filtering and having all the sources in one jar).
the way I am thinking about implementing this, is changing the ant build to use patternsets instead of directly filesets to generate two filesets with the same inclusions/exclusions but pointing to both the sources and classes with no xml duplication.
Hope you like the idea.
Ruben