Configure javadoc plugin to accept miredot-specific tags in Java 8. Project: http://git-wip-us.apache.org/repos/asf/incubator-unomi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-unomi/commit/f1d8d93e Tree: http://git-wip-us.apache.org/repos/asf/incubator-unomi/tree/f1d8d93e Diff: http://git-wip-us.apache.org/repos/asf/incubator-unomi/diff/f1d8d93e
Branch: refs/heads/master Commit: f1d8d93eb482f7d5f23a91c110afac344c1fd67e Parents: 8a34934 Author: Chris Laprun <[email protected]> Authored: Fri Nov 20 11:17:14 2015 +0100 Committer: Chris Laprun <[email protected]> Committed: Fri Nov 20 11:17:14 2015 +0100 ---------------------------------------------------------------------- pom.xml | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-unomi/blob/f1d8d93e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 1d1874b..fcb6739 100644 --- a/pom.xml +++ b/pom.xml @@ -575,6 +575,35 @@ _ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> + <configuration> + <tags> + <tag> + <name>summary</name> + <placement>a</placement> + <head>MireDot summary (resource title)</head> + </tag> + <tag> + <name>title</name> + <placement>a</placement> + <head>MireDot title (resource title)</head> + </tag> + <tag> + <name>servicetag</name> + <placement>a</placement> + <head>MireDot resource tag (label)</head> + </tag> + <tag> + <name>statuscode</name> + <placement>a</placement> + <head>MireDot resource status code(s)</head> + </tag> + <tag> + <name>responseheader</name> + <placement>a</placement> + <head>MireDot response header</head> + </tag> + </tags> + </configuration> </plugin> </plugins> @@ -591,6 +620,35 @@ _ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> + <configuration> + <tags> + <tag> + <name>summary</name> + <placement>a</placement> + <head>MireDot summary (resource title)</head> + </tag> + <tag> + <name>title</name> + <placement>a</placement> + <head>MireDot title (resource title)</head> + </tag> + <tag> + <name>servicetag</name> + <placement>a</placement> + <head>MireDot resource tag (label)</head> + </tag> + <tag> + <name>statuscode</name> + <placement>a</placement> + <head>MireDot resource status code(s)</head> + </tag> + <tag> + <name>responseheader</name> + <placement>a</placement> + <head>MireDot response header</head> + </tag> + </tags> + </configuration> </plugin> </plugins> </reporting>
