Skip to content

Instantly share code, notes, and snippets.

@mnadeem
Created August 30, 2016 14:14
Show Gist options
  • Save mnadeem/40879681af59533743804321efb310d6 to your computer and use it in GitHub Desktop.
Save mnadeem/40879681af59533743804321efb310d6 to your computer and use it in GitHub Desktop.
Maven JavaDoc plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment