I am able to pull the release jars following the instructions on the Jena web pages, using
<!-- https://repository.apache.org/content/repositories/releases/ --> <dependency> <groupId>org.apache.jena</groupId> <artifactId>apache-jena-libs</artifactId> <type>pom</type> <version>3.12.0</version> </dependency> However, this is not sufficient to turn on JavaDoc tooltips in the Eclipse IDE (I'm pulling these into a Maven Plug-In project). Setting Maven preferences and build goals to include source does not work. Is there a repository and artifactId to pull jars that include the javadoc?
