reactive-plumber-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.galinet.reactive.plumber</groupId> <artifactId>reactive-plumber-test</artifactId> <version>0.26.0</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"> <parent> <artifactId>reactive-plumber</artifactId> <groupId>ch.galinet.reactive.plumber</groupId> <version>0.26.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>reactive-plumber-test</artifactId> <dependencies> <dependency> <groupId>ch.galinet.reactive.plumber</groupId> <artifactId>reactive-plumber-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>ch.galinet.reactive.plumber</groupId> <artifactId>reactive-plumber-reactor</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.javaslang</groupId> <artifactId>javaslang</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.bitstrings.test</groupId> <artifactId>junit-clptr</artifactId> <version>1.2.2</version> </dependency> </dependencies> <profiles> <profile> <id>graphs</id> <build> <defaultGoal>gplus:execute</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <configuration> <scripts> <script><![CDATA[ import li.chee.reactive.plumber.GraphGen GraphGen.generateGraphs("src/main/resources/examples/four", "Four", "target/apidocs/graphs") ]]></script> </scripts> </configuration> <dependencies> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy</artifactId> <version>3.0.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-ant</artifactId> <version>3.0.11</version> <scope>runtime</scope> </dependency> </dependencies> </plugin> </plugins> </build> </profile> </profiles> </project>