plantuml-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.funthomas424242</groupId> <artifactId>plantuml-maven-plugin</artifactId> <version>1.5.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.funthomas424242</groupId> <artifactId>plantuml-maven-plugin</artifactId> <version>1.5.2</version> <packaging>maven-plugin</packaging> <name>Maven PlantUML plugin</name> <inceptionYear>2011</inceptionYear> <description> A maven plugin to generate UML diagrams using PlantUML syntax </description> <url>https://github.com/Huluvu424242/plantuml-maven-plugin</url> <licenses> <license> <url>https://www.apache.org/licenses/LICENSE-2.0</url> <name>Apache License Version 2.0, January 2004 </name> <distribution>repo</distribution> </license> </licenses> <scm> <url>scm:git:https://github.com/Huluvu424242/plantuml-maven-plugin</url> <connection>scm:git:git@github.com:funthomas424242/maven-plantuml-plugin</connection> <developerConnection>scm:git:git@github.com:funthomas424242/plantuml-maven-plugin.git</developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/Huluvu424242/plantuml-maven-plugin/issues/new</url> </issueManagement> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/Huluvu424242/plantuml-maven-plugin</url> </ciManagement> <distributionManagement> <repository> <id>github</id> <name>GitHub Huluvu424242 Apache Maven Packages</name> <url>https://maven.pkg.github.com/Huluvu424242/${project.artifactId}</url> </repository> </distributionManagement> <prerequisites> <maven>${mavenVersion}</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <mavenVersion>3.6.3</mavenVersion> <java.build.version>13</java.build.version> <java.target.version>11</java.target.version> </properties> <dependencies> <dependency> <groupId>net.sourceforge.plantuml</groupId> <artifactId>plantuml</artifactId> <version>1.2020.19</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.3.0</version> </dependency> <!-- TEST deps --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>${mavenVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${mavenVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-plugin-testing</artifactId> <version>3.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-plugin-integration-testing</artifactId> <version>3.0.0</version> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>5.7.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>${mavenVersion}</version> </requireMavenVersion> <requireJavaVersion> <version>${java.build.version}</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> <release>${java.target.version}</release> <compilerArgs> <arg>-Xlint:all</arg> <arg>--add-opens=java.base/java.lang=ALL-UNNAMED</arg> <arg>--add-opens=java.base/java.net=ALL-UNNAMED</arg> </compilerArgs> <fork>true</fork> </configuration> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <licenseFile>LICENSE</licenseFile> <licenseName>apache_v2</licenseName> <useMissingFile>true</useMissingFile> <excludedLicenses> <excludedLicense>GNU General Public License (GPL) 1.0</excludedLicense> <excludedLicense>GNU General Public License (GPL) 2.0</excludedLicense> <excludedLicense>GNU General Public License (GPL) 3.0</excludedLicense> </excludedLicenses> <failIfWarning>true</failIfWarning> <includes> <include>**/*.java</include> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <excludes> <exclude>**/*.png</exclude> <exclude>**/*.json</exclude> </excludes> </configuration> <executions> <execution> <id>update-header</id> <phase>process-sources</phase> <goals> <goal>update-file-header</goal> <goal>update-project-license</goal> <goal>add-third-party</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>io.takari.maven.plugins</groupId> <artifactId>takari-lifecycle-plugin</artifactId> <version>2.0.0</version> <extensions>true</extensions> <executions> <execution> <id>testProperties</id> <phase>process-test-resources</phase> <goals> <goal>testProperties</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.2.1</version> <configuration> <projectsDirectory>src/examples</projectsDirectory> <cloneProjectsTo>${project.build.directory}/test-examples-invoker</cloneProjectsTo> <settingsFile>src/examples/settings.xml</settingsFile> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <preBuildHookScript>prebuild</preBuildHookScript> <postBuildHookScript>postbuild</postBuildHookScript> <addTestClassPath>true</addTestClassPath> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.8.1</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M3</version> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.1.1</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.9.1</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>2.0.0</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>pruefeVersionen</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <configuration> <generateBackupPoms>false</generateBackupPoms> <rulesUri>file:///${project.basedir}/etc/version-rules.xml</rulesUri> </configuration> <executions> <execution> <id>show-dep-updates</id> <phase> validate </phase> <goals> <goal>display-dependency-updates</goal> <goal>display-plugin-updates</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>java8ci</id> <properties> <maven.compiler.target>1.8</maven.compiler.target> <java.build.version>1.8</java.build.version> <java.target.version>1.8</java.target.version> <maven.compiler.source>1.8</maven.compiler.source> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration combine.self="override"> <encoding>UTF-8</encoding> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> <fork>true</fork> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>java8</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>java-8</id> <activation> <jdk>1.8</jdk> </activation> <properties> <maven.compiler.target>1.8</maven.compiler.target> <java.build.version>1.8</java.build.version> <java.target.version>1.8</java.target.version> <maven.compiler.source>1.8</maven.compiler.source> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration combine.self="override"> <encoding>UTF-8</encoding> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> <fork>true</fork> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <attach>true</attach> <failOnError>false</failOnError> <debug>false</debug> <verbose>false</verbose> <encoding>UTF-8</encoding> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> <executions> <execution> <phase>package</phase> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <id>jmdesprez</id> <name>Jean-Marc Desprez</name> </developer> <developer> <id>jeluard</id> <name>Julien Eluard</name> </developer> <developer> <id>vanuan</id> <name>John Yani</name> </developer> <developer> <id>matling</id> <name>Mattias Lingdell</name> </developer> </developers> <contributors> <contributor> <name>Guilherme I F L Weizenmann</name> <email>guilherme@itquasar.com</email> <url>https://github.com/giflw</url> <roles> <role>developer</role> </roles> </contributor> <contributor> <name>bvfalcon</name> <email>github@bychkov.name</email> <url>https://github.com/bvfalcom</url> <roles> <role>developer</role> </roles> </contributor> <contributor> <name>Huluvu424242 alias FunThomas424242 (Thomas Schubert)</name> <email>huluvu424242@gmail.com</email> <url>https://github.com/Huluvu424242</url> <roles> <role>developer</role> </roles> </contributor> <contributor> <name>Martin Goldhahn</name> <url>https://github.com/maddingo</url> <roles> <role>developer</role> </roles> </contributor> </contributors> <!-- needed for license header --> <organization> <name>Julien Eluard</name> <url>https://github.com/jeluard/</url> </organization> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <reportSets> <reportSet> <configuration> <skip>true</skip> </configuration> </reportSet> </reportSets> </plugin> </plugins> </reporting> </project>