<?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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>cn.structured</groupId>
  <artifactId>structure-redisson-starter</artifactId>
  <version>1.4.2</version>
  <name>structure-redisson-starter</name>
  <description>封装 redisson 将封装成启动器,并且对分布式锁和缓存进行封装</description>
  <url>https://projects.structured.cn/structure-boot</url>
  <inceptionYear>2021</inceptionYear>
  <organization>
    <name>structure</name>
  </organization>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>chuckLcq</id>
      <name>chuck</name>
      <email>15524415221@163.com</email>
    </developer>
    <developer>
      <id>lchqJava</id>
      <name>Chuanqiang Liu</name>
      <email>361648887@qq.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/structure-projects/structure-boot.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:structure-projects/structure-boot.git</developerConnection>
    <url>https://github.com/structure-projects/structure-boot</url>
  </scm>
  <issueManagement>
    <system>Github</system>
    <url>https://github.com/structure-projects/structure-boot/issues</url>
  </issueManagement>
  <distributionManagement>
    <snapshotRepository>
      <id>oss</id>
      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-autoconfigure</artifactId>
      <version>4.0.6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-aop</artifactId>
      <version>3.4.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-configuration-processor</artifactId>
      <version>4.0.6</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.30</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.redisson</groupId>
      <artifactId>redisson</artifactId>
      <version>3.25.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.5.32</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <id>ossrh-snapshots</id>
      <url>https://central.sonatype.com/repository/maven-snapshots/</url>
    </repository>
  </repositories>
</project>
