graphviz-kotlin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>guru.nidi</groupId>
<artifactId>graphviz-kotlin</artifactId>
<version>0.18.1</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>guru.nidi</groupId>
<artifactId>graphviz-java-parent</artifactId>
<version>0.18.1</version>
</parent>
<artifactId>graphviz-kotlin</artifactId>
<name>${project.artifactId}</name>
<properties>
<kotlin.version>1.3.61</kotlin.version>
<module.name>guru.nidi.graphviz.kotlin</module.name>
</properties>
<build>
<plugins>
<plugin>
<groupId>guru.nidi</groupId>
<artifactId>code-assert-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>assert</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>guru.nidi.maven.plugins</groupId>
<artifactId>snippets-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>snippets</goal>
</goals>
<configuration>
<inputs>
<input>
src/test/kotlin/guru/nidi/graphviz
</input>
</inputs>
<outputs>
<output>../README.md</output>
</outputs>
<prefix>\n```kotlin</prefix>
<postfix>```\n</postfix>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>graphviz-java</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.4.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>