comparison mx/commands.py @ 5782:488864d5069a

added support for passing -tag option to javadoc to suppress warnings about unrecognized tags in javadoc comments used above support to suppress warnings about testing related tags (e.g., @test, @bug etc)
author Doug Simon <doug.simon@oracle.com>
date Fri, 06 Jul 2012 15:31:48 +0200
parents 613a3ddb9a71
children 44eb34b54526 a10e72af4dc5
comparison
equal deleted inserted replaced
5781:039b73517e49 5782:488864d5069a
971 971
972 def site(args): 972 def site(args):
973 """creates a website containing javadoc and the project dependency graph""" 973 """creates a website containing javadoc and the project dependency graph"""
974 974
975 return mx.site(['--name', 'Graal', 975 return mx.site(['--name', 'Graal',
976 '--jd', '@-tag', '--jd', '@test:X',
977 '--jd', '@-tag', '--jd', '@run:X',
978 '--jd', '@-tag', '--jd', '@bug:X',
979 '--jd', '@-tag', '--jd', '@summary:X',
980 '--jd', '@-tag', '--jd', '@vmoption:X',
976 '--overview', join(_graal_home, 'graal', 'overview.html'), 981 '--overview', join(_graal_home, 'graal', 'overview.html'),
977 '--title', 'Graal OpenJDK Project Documentation', 982 '--title', 'Graal OpenJDK Project Documentation',
978 '--dot-output-base', 'modules'] + args) 983 '--dot-output-base', 'modules'] + args)
979 984
980 def mx_init(): 985 def mx_init():