Advertisement
viper25

Generate Java docs in POM

Feb 29th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.34 KB | None | 0 0
  1. <plugin>
  2.     <groupId>org.apache.maven.plugins</groupId>
  3.     <artifactId>maven-javadoc-plugin</artifactId>
  4.     <version>2.10.3</version>
  5.     <configuration>
  6.         <failOnError>false</failOnError>
  7.     </configuration>
  8.     <executions>
  9.         <execution>
  10.             <id>attach-javadocs</id>
  11.             <goals>
  12.                 <goal>jar</goal>
  13.             </goals>
  14.         </execution>
  15.     </executions>
  16. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement