<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.bancolombia</groupId>
  <artifactId>bin-stash-local</artifactId>
  <version>1.2.0</version>
  <name>Bin-Stash</name>
  <description>Caching data in memory and/or a centralized cache to build a two tier stage cache.</description>
  <url>https://github.com/bancolombia/bin-stash</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://opensource.org/licenses/mit-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>gabheadz</id>
      <name>Gabriel Martinez</name>
      <email>gabrieljm@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <url>git@github.com:bancolombia/bin-stash.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.github.bancolombia</groupId>
      <artifactId>bin-stash-usecase</artifactId>
      <version>1.2.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>io.projectreactor</groupId>
      <artifactId>reactor-core</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.github.bancolombia</groupId>
      <artifactId>bin-stash-memory</artifactId>
      <version>1.2.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-dependencies</artifactId>
        <version>3.1.1</version>
        <scope>import</scope>
        <type>pom</type>
      </dependency>
    </dependencies>
  </dependencyManagement>
</project>
