-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would be nice to use in the <reporting> section of pom.xml for maven-site #6
Comments
I welcome pull requests! |
ok I'll do my best |
I second this issue, and can test pull requests as well. It would be great to have the generated groovy docs replace the javadocs in the site since it will be a joint java/groovy doc set. |
I found this issue while searching for a solution to do the same; include the generated GroovyDocs in the reports section of Maven generated site. While I wish the process were a little easier, I wanted to point out that the resource plugin is not required to copy the generated docs to the site. Simply specify a destination directory for the <plugin>
<groupId>com.bluetrainsoftware.maven</groupId>
<artifactId>groovydoc-maven-plugin</artifactId>
<version>1.3</version>
...
<configuration>
<destinationDirectory>${project.reporting.outputDirectory}/groovydoc</destinationDirectory>
</configuration>
</plugin>
You will still need to edit the |
Right now to be able to deploy the groovydoc with maven site
I have to add this to the pom.xml
And that to site.xml
The text was updated successfully, but these errors were encountered: