BlockUmlBuilder#getIncludedFiles no longer works

0 votes
asked Mar 6, 2020 in Bug by krasa (820 points)

It used to work but now returns an empty set, am I doing something wrong or is there some other way to get them? 

IntelliJ plugin needs it:

https://github.com/esteinberg/plantuml4idea/blob/11aec1eedd4977acaddfeafb859b558e49d733b4/src/org/plantuml/idea/plantuml/PlantUmlIncludes.java#L29-L30

main.puml:

@startuml
!include external.puml
A --> B : a
@enduml
external.puml:
@startuml
Alice -> Bob: Authentication Request
Bob --> Alice: Authentication Response
@enduml

1 Answer

0 votes
answered Mar 6, 2020 by plantuml (294,960 points)
selected Mar 6, 2020 by krasa
 
Best answer
Thanks for the report. It has been broken with the new preprocessor implementation.

It should be fixed in last beta http://beta.plantuml.net/plantuml.jar

Tell us if it's not working for you.

Regards,
commented Mar 6, 2020 by krasa (820 points)
Thanks! It seems to work fine.
...