<?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>
  <parent>
    <groupId>com.icetech</groupId>
    <artifactId>ice-file-server</artifactId>
    <version>1.0.2-RC</version>
  </parent>
  <groupId>com.icetech</groupId>
  <artifactId>ice-file-provider</artifactId>
  <version>1.0.2-RC</version>
  <dependencies>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-file-api</artifactId>
      <version>${parent.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>
  </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>
