Skip to content

Commit

Permalink
testingisdocumenting#421 adding generation of javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmetlis committed Aug 29, 2019
1 parent 4ad3019 commit f618f9c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Expand Up @@ -588,6 +588,27 @@
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
</configuration>
<executions>
<execution>
<id>aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>site</phase>
<configuration>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</pluginManagement>

Expand Down

0 comments on commit f618f9c

Please sign in to comment.