Permalink
Show file tree
Hide file tree
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8274311: Make build.tools.jigsaw.GenGraphs more configurable
Reviewed-by: alanb, iris
- Loading branch information
Showing
3 changed files
with
134 additions
and
67 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
@@ -1,2 +1,35 @@ | ||
# Configuration file for build.tools.jigsaw.GenGraphs | ||
|
||
nodesep=.5 | ||
node-margin=.2,.2 | ||
ranksep=0.6 | ||
fontsize=12 | ||
fontcolor=#000000 | ||
fontname=DejaVuSans | ||
arrowsize=1 | ||
arrowwidth=2 | ||
|
||
# requires edge: gray | ||
arrowcolor=#999999 | ||
requiresMandatedColor=#999999 | ||
|
||
# requires mandated java.base edge: light gray | ||
requiresMandatedColor=#dddddd | ||
|
||
requiresTransitiveStyle= | ||
requiresStyle=dashed | ||
|
||
# java.* modules: orange | ||
javaSubgraphColor=#e76f00 | ||
|
||
# jdk.* modules: blue | ||
jdkSubgraphColor=#437291 | ||
|
||
# configure the group of modules in the same rank | ||
ranks.1=java.logging,java.scripting,java.xml | ||
ranks.2=java.sql | ||
ranks.4=java.compiler,java.instrument | ||
ranks.5=java.desktop,java.management | ||
|
||
# configure the edges A -> B -> C .... with the same weight | ||
# that should get these modules lined in a straight line | ||
weights=java.se,java.sql.rowset,java.sql,java.xml |
This file contains 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
daaa47e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues