flow
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.nasdanika.html</groupId>
<artifactId>flow</artifactId>
<version>2022.10.0</version>
</dependency><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>
<artifactId>parent</artifactId>
<groupId>org.nasdanika.html</groupId>
<version>2022.10.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>flow</artifactId>
<packaging>jar</packaging>
<name>Nasdanika HTML Flow documentation generation</name>
<description>Classes for generating Flow models documentation as YAML action spec.</description>
<url>https://docs.nasdanika.org/modules/html/modules/flow/index.html</url>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.nasdanika.html</groupId>
<artifactId>emf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nasdanika.html</groupId>
<artifactId>app-model-gen</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>flow</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
<dependency>
<groupId>org.nasdanika.core</groupId>
<artifactId>diagram-gen</artifactId>
<version>${core.version}</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.23.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.dfabulich</groupId>
<artifactId>sitemapgen4j</artifactId>
<version>1.1.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>