Skip to content

Commit

Permalink
Fixed javadoc plugin config
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jan 18, 2016
1 parent 5453622 commit e31f880
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,29 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!-- Default configuration for all reports -->
<outputDirectory>${project.build.directory}/javadoc/${project.version}</outputDirectory>
<reportOutputDirectory>${project.build.directory}/javadoc/${project.version}</reportOutputDirectory>
<destDir>${project.build.directory}/javadoc/${project.version}</destDir>
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<configuration>
<!-- Specific configuration for the aggregate report -->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down

0 comments on commit e31f880

Please sign in to comment.