Skip to content

Commit

Permalink
Exclude deprecated projects for javadoc generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
chumer committed Mar 26, 2018
1 parent b89d0b1 commit 1215193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/mx.compiler/mx_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ def compiler_gate_runner(suites, unit_test_runs, bootstrap_tests, tasks, extraVM

with Task('Javadoc', tasks, tags=GraalTags.doc) as t:
# metadata package was deprecated, exclude it
if t: mx.javadoc(['--exclude-packages', 'com.oracle.truffle.api.metadata'], quietForNoPackages=True)
if t: mx.javadoc(['--exclude-packages', 'com.oracle.truffle.api.metadata,com.oracle.truffle.api.interop.java,com.oracle.truffle.api.vm'], quietForNoPackages=True)

graal_unit_test_runs = [
UnitTestRun('UnitTests', [], tags=GraalTags.test),
Expand Down

0 comments on commit 1215193

Please sign in to comment.