Component diagram arrow color bug

0 votes
asked Mar 5, 2015 in To be sorted by anonymous

I have the following codes, and the arrow color is always Red from P_SourceSystems to P_QRM regardless of the color setting.

**********************************

@startuml
skinparam componentStyle uml2
!pragma horizontalLineBetweenDifferentPackageAllowed
 
 
package "Source Systems" as P_SourceSystems {
component "**SS-000-C01**\nProduct\nSystems" as SSProductSystems 
component "**SS-000-C02**\nNon-Product\nSystems" as SSNonProductSystems 
 
}
package "QRM (GA-005)\n<$qrm>" as P_QRM {
component "**GA-005-C01**\nCustomoer Accounts\nBalances with\n{Mapped Oracle COA}" as QRMCustAccts 
folder "**GA-005-C02**\nTP and\nPremiums Rates\n{Products Level}" as QRMTPRates
}
 
P_SourceSystems -[#Yellow]r-> P_QRM 
 
@enduml 
 
*************************************
 
However, if I delete all the components within the package Source_Systems (see codes below), then the arrow will show in Yellow correctly. (but that isn't what I want).
 
Is this a bug?

************************************

@startuml
skinparam componentStyle uml2
!pragma horizontalLineBetweenDifferentPackageAllowed
 
package "Source Systems" as P_SourceSystems
package "QRM (GA-005)\n<$qrm>" as P_QRM {
component "**GA-005-C01**\nCustomoer Accounts\nBalances with\n{Mapped Oracle COA}" as QRMCustAccts 
folder "**GA-005-C02**\nTP and\nPremiums Rates\n{Products Level}" as QRMTPRates
}
 
P_SourceSystems -[#Yellow]r-> P_QRM 
 
@enduml
 
******************************************
 

1 Answer

+1 vote
answered Mar 5, 2015 by plantuml (294,960 points)
Thanks for the report.

This is indeed a bug and has been fixed in following beta:

https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

This will be release in next official release.
...