<?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.0.3</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://github.com/JoseLion/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>info.picocli</groupId>
      <artifactId>picocli</artifactId>
      <version>4.6.3</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.github.joselion</groupId>
      <artifactId>maybe</artifactId>
      <version>3.0.1</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>io.projectreactor</groupId>
      <artifactId>reactor-core</artifactId>
      <version>3.4.24</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-api</artifactId>
      <version>2.19.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-core</artifactId>
      <version>2.19.0</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
