<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>
  <parent>
    <groupId>com.icetech</groupId>
    <artifactId>ice-message-server</artifactId>
    <version>1.0.3-SNAPSHOT</version>
  </parent>
  <groupId>com.icetech</groupId>
  <artifactId>ice-message-provider</artifactId>
  <version>1.0.3-SNAPSHOT</version>
  <properties>
    <thumbnailator.version>0.4.8</thumbnailator.version>
    <ice-sdk.version>1.1.1-RC</ice-sdk.version>
    <icecloud-version>2.5.10.1-RC</icecloud-version>
    <okhttp3.version>4.5.0</okhttp3.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-message-api</artifactId>
      <version>${parent.version}</version>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>icecloud-cloudcenter-api</artifactId>
      <version>${icecloud-version}</version>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>icecloud-open-api</artifactId>
      <version>${icecloud-version}</version>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>icecloud-partner-api</artifactId>
      <version>${icecloud-version}</version>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>icecloud-paycenter-api</artifactId>
      <version>${icecloud-version}</version>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-common-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-rabbitmq-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-log-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-rpc-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-redis-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-web-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-oss-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-nacos-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
      <groupId>net.coobird</groupId>
      <artifactId>thumbnailator</artifactId>
      <version>${thumbnailator.version}</version>
    </dependency>
    <dependency>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>okhttp</artifactId>
      <version>${okhttp3.version}</version>
    </dependency>
    <dependency>
      <groupId>com.huaweicloud</groupId>
      <artifactId>esdk-obs-java</artifactId>
      <version>3.20.6.2</version>
      <exclusions>
        <exclusion>
          <artifactId>okhttp</artifactId>
          <groupId>com.squareup.okhttp3</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>shenzhen-crt-utils</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>com.hfcsbc.sdk</groupId>
      <artifactId>upload-client</artifactId>
      <version>2.0.30</version>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-sdk-java</artifactId>
      <version>${ice-sdk.version}</version>
    </dependency>
    <dependency>
      <groupId>io.micrometer</groupId>
      <artifactId>micrometer-registry-prometheus</artifactId>
    </dependency>
  </dependencies>
  <build>
    <finalName>${project.artifactId}</finalName>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
        <version>${spring-boot-dependencies.version}</version>
        <executions>
          <execution>
            <goals>
              <goal>repackage</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>com.spotify</groupId>
        <artifactId>dockerfile-maven-plugin</artifactId>
        <version>${dockerfile-version}</version>
        <configuration>
          <repository>${project.build.finalName}</repository>
          <buildArgs>
            <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
          </buildArgs>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
