plantuml / plantuml-stdlib

Contains official Standard Library for PlantUML
522 stars 111 forks source link

Error in listing gcp/Networking/all.puml #103

Open jcralbino opened 2 months ago

jcralbino commented 2 months ago

When trying to list all sprites in gcp/Networking/all there is an error

This code:

@startuml
!include <gcp/Networking/all>
listsprites
@enduml

results in image

Using PlantUML version 1.2024.4

The-Lum commented 2 months ago

Hello @jcralbino,

Similar to:

In order to use gcp/Networking/all, you must to include gcp/GCPCommon, as:

@startuml
!include <gcp/GCPCommon>
!include <gcp/Networking/all>
listsprites
@enduml

Enjoy, Regards, Th.