jira-importer commented on issue #407: URL: https://github.com/apache/maven-javadoc-plugin/issues/407#issuecomment-2957325036
**[Peter Janes](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=peterj)** commented I've been using maven-dependency-plugin and maven-javadoc-plugin to basically replicate the steps you describe: ``` <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>get-javadoc-sources</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <classifier>sources</classifier> <outputDirectory>${project.build.directory}/sources</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>create-javadocs</id> <phase>prepare-package</phase> <goals> <goal>javadoc</goal> </goals> <configuration> <sourcepath>${project.build.directory}/sources</sourcepath> </configuration> </execution> </executions> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
