在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):arnaudroques/maven-plantuml-plugin开源软件地址(OpenSource Url):https://github.com/arnaudroques/maven-plantuml-plugin开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):A maven plugin to generate UML diagrams using PlantUML syntax. Important noteIf you want to use versions of PlantUML greater than 8031 you have to use version 1.2 of this plugin. UsageTo 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:
Extra configuration options
Released under Apache 2 license. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论