# Generating UML Diagrams from IntelliJ project ### IntelliJ Plugins (also for community edition): - Sketch It! - for generating uml diagrams - plantuml files - PlantUML Integration - for displaying plantuml files inside IntelliJ, and generating PNG/SVG images ### Software https://graphviz.gitlab.io/download/ (stable package) ### Setting env variables GRAPHVIZ_DOT = "C:\Program Files (x86)\Graphviz2.38\bin\dot.exe" ## Generating Diagrams in Intellij Tools -> Sketch It ## Removing all plantuml files from the project (in terminal) cd /home/project (D:/project) find . -name '*.plantuml' | xargs rm