<?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>api-boot-dependencies</artifactId>
    <version>2.2.2.RELEASE</version>
    <relativePath>../api-boot-dependencies</relativePath>
  </parent>
  <groupId>org.minbox.framework</groupId>
  <artifactId>api-boot-parent</artifactId>
  <version>2.2.2.RELEASE</version>
  <packaging>pom</packaging>
  <description>ApiBoot Starter / Plugin Parent</description>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <properties>
    <main.basedir>${basedir}/../..</main.basedir>
    <api.boot.version>${project.version}</api.boot.version>
  </properties>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Implementation-Title>${project.name}</Implementation-Title>
              <Implementation-Version>${api.boot.version}</Implementation-Version>
              <Built-By>ApiBoot</Built-By>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
