atomic-flyway
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.joselion</groupId> <artifactId>atomic-flyway</artifactId> <version>1.7.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.joselion</groupId> <artifactId>atomic-flyway</artifactId> <version>1.7.0</version> <name>atomic-flyway</name> <description> A wrapper around Flyway to make your migration atomic. That is to say, it provides a revert mechanism that is set in place by design every time you write a migration. </description> <url>https://joselion.github.io/atomic-flyway/</url> <licenses> <license> <name>Apache License 2.0</name> <url>https://github.com/JoseLion/atomic-flyway/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>JoseLion</id> <name>Jose Luis Leon</name> <email>joseluis5000l@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/JoseLion/atomic-flyway.git</connection> <developerConnection>scm:git:ssh://github.com/JoseLion/atomic-flyway.git</developerConnection> <url>https://github.com/joselion/atomic-flyway</url> </scm> <dependencies> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.annotation</artifactId> <version>2.3.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.joselion</groupId> <artifactId>maybe</artifactId> <version>4.4.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>4.7.6</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.6.8</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.projectreactor.addons</groupId> <artifactId>reactor-extra</artifactId> <version>3.5.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>[2.0.0,)</version> <scope>runtime</scope> </dependency> </dependencies> </project>