<?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-parent</artifactId>
    <version>1.1.20.0-RC</version>
  </parent>
  <groupId>com.icetech</groupId>
  <artifactId>ice-auth</artifactId>
  <version>1.0.2-RC</version>
  <name>ice-auth</name>
  <description>认证服务</description>
  <distributionManagement>
    <repository>
      <id>nexus-releases</id>
      <name>Nexus Release Repository</name>
      <url>http://mvn.icecloud-car.com/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
      <id>nexus-snapshots</id>
      <name>Nexus snapshots Repository</name>
      <url>http://mvn.icecloud-car.com/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
  </distributionManagement>
  <properties>
    <java.version>1.8</java.version>
    <dockerfile-version>1.4.9</dockerfile-version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-base-api</artifactId>
      <version>1.1.13-SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-user-api</artifactId>
      <version>1.0-SNAPSHOT</version>
    </dependency>
    <dependency>
      <groupId>com.icetech</groupId>
      <artifactId>ice-common-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-nacos-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-token-spring-boot-starter</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <dependency>
      <groupId>io.micrometer</groupId>
      <artifactId>micrometer-registry-prometheus</artifactId>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <id>public</id>
      <name>public</name>
      <url>http://mvn.icecloud-car.com/nexus/content/groups/public/</url>
    </repository>
  </repositories>
  <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>
    </plugins>
  </build>
</project>
