<?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">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>com.github.drtrang</groupId>
        <artifactId>parent</artifactId>
        <version>1.2.3</version>
    </parent>

    <artifactId>redisson-spring-boot</artifactId>
    <version>1.2.4</version>
    <packaging>pom</packaging>

    <name>redisson-spring-boot</name>
    <description>Spring Boot Starter for Redisson</description>
    <url>https://github.com/drtrang/redisson-spring-boot</url>

    <inceptionYear>2017</inceptionYear>

    <developers>
        <developer>
            <id>trang</id>
            <name>trang</name>
            <email>donghao.l@hotmail.com</email>
            <timezone>+8</timezone>
            <url>http://blog.trang.space/</url>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:https://github.com/drtrang/redisson-spring-boot.git</connection>
        <developerConnection>scm:git:git@github.com:drtrang/redisson-spring-boot.git</developerConnection>
        <url>https://github.com/drtrang/redisson-spring-boot</url>
        <tag>HEAD</tag>
    </scm>

    <issueManagement>
        <system>github</system>
        <url>https://github.com/drtrang/redisson-spring-boot/issues</url>
    </issueManagement>

    <modules>
        <module>redisson-spring-boot-autoconfigure</module>
        <module>redisson-spring-boot-starter</module>
    </modules>

    <properties>
        <redisson.version>3.7.2</redisson.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>com.github.drtrang</groupId>
                <artifactId>redisson-spring-boot-autoconfigure</artifactId>
                <version>${project.version}</version>
            </dependency>
            <dependency>
                <groupId>com.github.drtrang</groupId>
                <artifactId>redisson-spring-boot-starter</artifactId>
                <version>${project.version}</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

</project>