camunda-bpm-taskpool-view-mongo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.holunda.taskpool</groupId> <artifactId>camunda-bpm-taskpool-view-mongo</artifactId> <version>2.1.8</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>io.holunda.taskpool</groupId> <artifactId>camunda-bpm-taskpool-view-root</artifactId> <version>2.1.8</version> </parent> <artifactId>camunda-bpm-taskpool-view-mongo</artifactId> <name>view/${project.artifactId}</name> <properties> <axon-mongo.version>4.4</axon-mongo.version> </properties> <dependencies> <dependency> <groupId>io.holunda.taskpool</groupId> <artifactId>camunda-bpm-taskpool-view-api</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId> </dependency> <dependency> <groupId>org.axonframework.extensions.mongo</groupId> <artifactId>axon-mongo</artifactId> <version>${axon-mongo.version}</version> </dependency> <dependency> <groupId>org.axonframework</groupId> <artifactId>axon-messaging</artifactId> </dependency> <dependency> <groupId>org.axonframework</groupId> <artifactId>axon-configuration</artifactId> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> </dependency> <dependency> <groupId>io.projectreactor.kotlin</groupId> <artifactId>reactor-kotlin-extensions</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>de.flapdoodle.embed</groupId> <artifactId>de.flapdoodle.embed.mongo</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.jgiven</groupId> <artifactId>jgiven-junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.jgiven</groupId> <artifactId>jgiven-spring</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.tngtech.jgiven</groupId> <artifactId>jgiven-html5-report</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.nhaarman.mockitokotlin2</groupId> <artifactId>mockito-kotlin</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>