This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grammar newEmptyCombinedGrammar; | |
javadoc : START_JAVADOC NEW_LINE javadocLine*? END_JAVA_BLOCK_COMMENT; | |
javadocLine: STAR (tag | text | htmlTag)* NEW_LINE; | |
tag: TAG_AUTHOR | |
| TAG_VERSION | |
| TAG_SINCE | |
| TAG_SEE | |
| TAG_PARAM | |
| TAG_RETURN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* @see MyClass | |
{ | |
"JAVADOC": { | |
"ASTERISK": "·*", | |
"TEXT": "·", | |
"JAVADOC_TAG_SECTION": { | |
"JAVADOC_TAG": { | |
"JAVADOC_TAG_SEE": "@see", | |
"JAVADOC_TAG_ARGUMENT": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn --batch-mode release:update-versions -DdevelopmentVersion=3.5.0-SNAPSHOT -DautoVersionSubmodules=true |