<?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>org.minbox.framework</groupId>
    <artifactId>minbox-build</artifactId>
    <version>1.0.4</version>
    <relativePath></relativePath>
  </parent>
  <groupId>org.minbox.framework</groupId>
  <artifactId>minbox-parent</artifactId>
  <version>1.0.5</version>
  <packaging>pom</packaging>
  <name>MinBox Parent</name>
  <description>Parent dependency used to build components in "minbox projects"</description>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>hengboy</id>
      <name>恒宇少年 - 于起宇</name>
      <email>hengboy@minbox.org</email>
      <url>https://blog.yuqiyu.com</url>
      <organization>minbox-projects</organization>
      <organizationUrl>https://github.com/minbox-projects</organizationUrl>
    </developer>
  </developers>
  <properties>
    <minbox-bom.version>1.0.5</minbox-bom.version>
    <jdk.version>1.8</jdk.version>
    <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  </properties>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>${jdk.version}</source>
          <target>${jdk.version}</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <version>${maven-jar-plugin.version}</version>
        <configuration>
          <archive>
            <manifestEntries>
              <Implementation-Title>${project.name}</Implementation-Title>
              <Implementation-Version>${project.version}</Implementation-Version>
              <Built-By>minbox-projects</Built-By>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
