mongodb-reactive-driver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.mongock</groupId> <artifactId>mongodb-reactive-driver</artifactId> <version>5.5.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"> <parent> <artifactId>mongodb</artifactId> <groupId>io.mongock</groupId> <version>5.5.1</version> </parent> <modelVersion>4.0.0</modelVersion> <name>Mongock driver for mongodb-reactive</name> <artifactId>mongodb-reactive-driver</artifactId> <dependencyManagement> <dependencies> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-driver-mongodb-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- CORE DEPENDENCIES --> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-driver-core</artifactId> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-api</artifactId> </dependency> <!-- GENERAL DEPENDENCIES --> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-reactivestreams</artifactId> <version>${mongodb-reactivestreams.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${springframework.version}</version> <optional>true</optional> </dependency> <!-- TEST --> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-test-util</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-test-runner</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito-core.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${test-containers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <version>${test-containers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j-api.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>