Skip to content

A maven plugin to generate UML diagrams using PlantUML syntax

License

Notifications You must be signed in to change notification settings

Pinpin31/maven-plantuml-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is not maintained anymore

A maven plugin to generate UML diagrams using PlantUML syntax.

Important note

If you want to use versions of PlantUML greater than 8031 you have to use version 1.2 of this plugin.

Usage

To generate images from PlantUML description add following dependency to your pom.xml:

...
<build>
  <plugins>
    <plugin>
      <groupId>com.github.jeluard</groupId>
      <artifactId>plantuml-maven-plugin</artifactId>
      <version>1.2</version>
      <configuration>
        <sourceFiles>
          <directory>${basedir}</directory>
          <includes>
            <include>src/main/plantuml/**/*.txt</include>
          </includes>
        </sourceFiles>
      </configuration>
      <dependencies>
        <dependency>
          <groupId>net.sourceforge.plantuml</groupId>
          <artifactId>plantuml</artifactId>
          <version>7999</version>
        </dependency>
      </dependencies>
    </plugin>
  </plugins>
</build>

Note that you must explicitely define the PlantUML version you want to use.

Then execute command:

mvn clean com.github.jeluard:plantuml-maven-plugin:generate

Extra configuration options

outputDirectory Directory where generated images are generated. Defaults to ${basedir}/target/plantuml

outputInSourceDirectory Whether or not to generate images in same directory as the source file. Defaults to false.

format Output format. Defaults to png.

verbose Wether or not to output details during generation. Defaults to false.

Released under Apache 2 license.

About

A maven plugin to generate UML diagrams using PlantUML syntax

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%