Declare custom javadoc tags

Declaring javadoc tags in the configuration for maven-javadoc-plugin
resolves several build warnings that appeared when using the
sonatype-oss-release profile.

Change-Id: I1be6950dd43fe844107a7f23381f5d7b20fe2935
This commit is contained in:
Sam Harwell
2014-07-15 12:13:37 -05:00
parent d227ddcea4
commit a2f23435fb

14
pom.xml
View File

@@ -605,6 +605,20 @@
<version>2.9.1</version>
<configuration>
<quiet>true</quiet>
<tags>
<tag>
<name>parameter</name>
<placement>Xf</placement>
</tag>
<tag>
<name>goal</name>
<placement>Xt</placement>
</tag>
<tag>
<name>configurator</name>
<placement>Xt</placement>
</tag>
</tags>
</configuration>
</plugin>