brainslug-maven-plugin-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.drobisch</groupId>
<artifactId>brainslug-maven-plugin-example</artifactId>
<version>0.22</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>
<parent>
<groupId>com.drobisch</groupId>
<artifactId>brainslug</artifactId>
<version>0.22</version>
<relativePath>../../</relativePath>
</parent>
<artifactId>brainslug-maven-plugin-example</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.drobisch</groupId>
<artifactId>brainslug-execution</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>com.drobisch</groupId>
<artifactId>brainslug-maven-renderer</artifactId>
<version>${project.version}</version>
<configuration>
<format>jpg</format>
<flows>brainslug.example.SimpleFlow</flows>
</configuration>
<executions>
<execution>
<id>render</id>
<goals>
<goal>render-flows</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.drobisch</groupId>
<artifactId>brainslug-maven-bpmn</artifactId>
<version>${project.version}</version>
<configuration>
<flows>brainslug.example.SimpleFlow</flows>
</configuration>
<executions>
<execution>
<id>export</id>
<goals>
<goal>export-bpmn</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>