umlet-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kryshchuk.maven.plugins</groupId> <artifactId>umlet-maven-plugin</artifactId> <version>1.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/maven-v4_0_0.xsd"> <parent> <artifactId>plugin-base</artifactId> <groupId>com.kryshchuk.maven.plugins</groupId> <version>1.2.8.1</version> <relativePath>../pom.xml/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>umlet-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <name>UMLet Maven Plugin</name> <version>1.2</version> <description>This plugin generates the image files (different formats) for the UMLet diagrams (uxf files). It is built on the top of UMLet editor implementation.</description> <url>http://ykryshchuk.github.com/umlet-maven-plugin/</url> <issueManagement> <system>GitHub</system> <url>https://github.com/ykryshchuk/umlet-maven-plugin/issues/</url> </issueManagement> <inceptionYear>2013</inceptionYear> <scm> <connection>scm:git:git://github.com/ykryshchuk/umlet-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:ykryshchuk/umlet-maven-plugin.git</developerConnection> <tag>umlet-maven-plugin-1.2</tag> <url>git@github.com:ykryshchuk/umlet-maven-plugin.git</url> </scm> <build> <plugins> <plugin> <artifactId>maven-plugin-plugin</artifactId> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <artifactSet> <includes> <include>org.slf4j:slf4j-api</include> <include>com.itextpdf:itextpdf</include> </includes> </artifactSet> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.kryshchuk</groupId> <artifactId>umlet-wrapper</artifactId> <version>13.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.sourceforge.jlibeps</groupId> <artifactId>jlibeps</artifactId> <version>0.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-svggen</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-util</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-ext</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-awt-util</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-dom</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-xml</artifactId> <version>1.7</version> <scope>runtime</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <scope>runtime</scope> <exclusions> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> <exclusion> <artifactId>jmxtools</artifactId> <groupId>com.sun.jdmk</groupId> </exclusion> <exclusion> <artifactId>jmxri</artifactId> <groupId>com.sun.jmx</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.kryshchuk.maven.plugins</groupId> <artifactId>file-visitor</artifactId> <version>1.0.8</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>3.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.0.10</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.googlecode.slf4j-maven-plugin-log</groupId> <artifactId>slf4j-maven-plugin-log</artifactId> <version>1.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit</artifactId> <groupId>junit</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.beanshell</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.kryshchuk</groupId> <artifactId>umlet-wrapper</artifactId> <version>13.3.0</version> </dependency> <dependency> <groupId>org.sourceforge.jlibeps</groupId> <artifactId>jlibeps</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.3.4</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-svggen</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-util</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-ext</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-awt-util</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-dom</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>org.apache.xmlgraphics</groupId> <artifactId>batik-xml</artifactId> <version>${xmlgraphics.version}</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.15</version> <exclusions> <exclusion> <artifactId>jms</artifactId> <groupId>javax.jms</groupId> </exclusion> <exclusion> <artifactId>jmxtools</artifactId> <groupId>com.sun.jdmk</groupId> </exclusion> <exclusion> <artifactId>jmxri</artifactId> <groupId>com.sun.jmx</groupId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <site> <id>plugin.site</id> <name>Project site</name> <url>${local.sites.url}</url> </site> </distributionManagement> <properties> <plugin.goalPrefix>umlet</plugin.goalPrefix> <xmlgraphics.version>1.7</xmlgraphics.version> </properties> </project>