dropwizard-mongo-migrations
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.kiwiproject</groupId> <artifactId>dropwizard-mongo-migrations</artifactId> <version>2.0.10</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> <artifactId>kiwi-parent</artifactId> <groupId>org.kiwiproject</groupId> <version>3.0.25</version> </parent> <artifactId>dropwizard-mongo-migrations</artifactId> <version>2.0.10</version> <name>${project.groupId}:${project.artifactId}</name> <description> This is a small library that provides a Dropwizard command to perform database migrations for Mongo. </description> <url>https://github.com/kiwiproject/dropwizard-mongo-migrations</url> <inceptionYear>2021</inceptionYear> <scm> <connection>scm:git:https://github.com/kiwiproject/dropwizard-mongo-migrations.git</connection> <developerConnection>scm:git:git@github.com:kiwiproject/dropwizard-mongo-migrations.git</developerConnection> <url>https://github.com/kiwiproject/dropwizard-mongo-migrations</url> <tag>v2.0.10</tag> </scm> <properties> <!-- Versions for required dependencies --> <kiwi.version>4.9.0</kiwi.version> <kiwi-bom.version>2.0.24</kiwi-bom.version> <mongock.version>5.5.1</mongock.version> <!-- Versions for test dependencies --> <kiwi-test.version>3.10.0</kiwi-test.version> <!-- Sonar properties --> <sonar.projectKey>kiwiproject_dropwizard-mongo-migrations</sonar.projectKey> <sonar.organization>kiwiproject</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-bom</artifactId> <version>${kiwi-bom.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi</artifactId> <version>${kiwi.version}</version> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-test</artifactId> <version>${kiwi-test.version}</version> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-bom</artifactId> <version>${mongock.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- required dependencies --> <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi</artifactId> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-standalone</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.testcontainers</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mongodb</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.kiwiproject</groupId> <artifactId>kiwi-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongodb-springdata-v4-driver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-sync</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <!-- This is needed if the mongodb-springdata-v3-driver is being used --> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-mongodb</artifactId> <scope>test</scope> </dependency> </dependencies> </project>