<?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>cn.hiboot.mcn</groupId>
    <artifactId>mcn-boot-dependencies</artifactId>
    <version>2.7.2</version>
    <relativePath>../mcn-boot-dependencies</relativePath>
  </parent>
  <groupId>cn.hiboot.mcn</groupId>
  <artifactId>mcn-boot-starter-parent</artifactId>
  <version>2.7.2</version>
  <packaging>pom</packaging>
  <name>Mcn Boot Starter Parent</name>
  <description>Parent pom providing dependency and plugin management for applications built with Maven</description>
  <url>http://www.hiboot.cn</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <properties>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
    <resource.delimiter>@</resource.delimiter>
    <excludeGroupIds>org.projectlombok</excludeGroupIds>
    <maven.compiler.source>${java.version}</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.target>${java.version}</maven.compiler.target>
  </properties>
  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>${java.version}</source>
            <target>${java.version}</target>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-maven-plugin</artifactId>
          <executions>
            <execution>
              <id>repackage</id>
              <goals>
                <goal>repackage</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
            <excludeGroupIds>${excludeGroupIds}</excludeGroupIds>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>
