mongock-spring
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.mongock</groupId> <artifactId>mongock-spring</artifactId> <version>5.0.5.BETA</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>spring</artifactId> <groupId>io.mongock</groupId> <version>5.0.5.BETA</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>mongock-spring</artifactId> <properties> <maven.compiler.target>1.8</maven.compiler.target> <maven.compiler.source>1.8</maven.compiler.source> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.javadoc.failOnError>false</maven.javadoc.failOnError> <springframework.version>[5.0.0, 6.0.0)</springframework.version> <spring-boot.version>[2.0.0, 3.0.0)</spring-boot.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-core-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- MONGOCK --> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-runner-core</artifactId> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-api</artifactId> </dependency> <dependency> <groupId>io.mongock</groupId> <artifactId>mongock-utils</artifactId> </dependency> <!-- SPRING --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${springframework.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>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>3.2.4</version> <scope>test</scope> </dependency> </dependencies> </project>