<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>pl.fhframework</groupId>
    <artifactId>fhCoreLite</artifactId>
    <version>4.10.9</version>
  </parent>
  <artifactId>pubsub-cluster</artifactId>
  <packaging>jar</packaging>
  <name>pubsub-cluster</name>
  <description>Implementation of the publish-subscribe pattern for cluster server configuration</description>

  <dependencies>
    <dependency>
      <groupId>pl.fhframework</groupId>
      <artifactId>coreLite</artifactId>
      <version>${fh.version}</version>
    </dependency>
    <dependency>
      <groupId>org.springframework.data</groupId>
      <artifactId>spring-data-redis</artifactId>
      <version>${springboot.version}</version>
    </dependency>
    <dependency>
      <groupId>redis.clients</groupId>
      <artifactId>jedis</artifactId>
      <version>2.10.0</version>
      <type>jar</type>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
