Details
Description
For pdfbox, fontbox, and jempbox I have added the following lines to my POM's. This way when eclipse adds them to my classpath it also picks up the source.
Essentially the following lines tell maven that when running a maven:install to also jar up the source files and include those in the distribution.
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>