Some time ago Jetbrains added PathVariables into their products, and I think it could be good to have it there. Simple example: @since and @author annotations
Add APP_VER=1.0.1 and AUTHOR=someone to paths, then extend template with:
@since ${pathAPP_VER}
@author ${pathAUTHOR}
and it will end up as
@since 1.0.1
@author someone
Some time ago Jetbrains added PathVariables into their products, and I think it could be good to have it there. Simple example: @since and @author annotations
Add APP_VER=1.0.1 and AUTHOR=someone to paths, then extend template with:
and it will end up as @since 1.0.1 @author someone