<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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>me.carleslc.Simple-YAML</groupId>
    <artifactId>Simple-YAML-Parent</artifactId>
    <version>1.8.3</version>
  </parent>
  <groupId>me.carleslc.Simple-YAML</groupId>
  <artifactId>Simple-Yaml</artifactId>
  <version>1.8.3</version>
  <name>Simple-Yaml</name>
  <description>A Java API that provides an easy-to-use way to store data using the YAML format.</description>
  <url>https://carleslc.me/Simple-YAML</url>
  <inceptionYear>2016</inceptionYear>
  <licenses>
    <license>
      <name>GNU General Public License v3.0</name>
      <url>https://api.github.com/licenses/gpl-3.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>Carleslc</id>
      <name>Carlos Lázaro Costa</name>
      <email>lazaro.costa.carles@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/Carleslc/Simple-YAML.git</connection>
    <developerConnection>scm:git://github.com/Carleslc/Simple-YAML.git</developerConnection>
    <url>git://github.com/Carleslc/Simple-YAML.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>me.carleslc.Simple-YAML</groupId>
      <artifactId>Simple-Configuration</artifactId>
      <version>1.8.3</version>
    </dependency>
    <dependency>
      <groupId>org.yaml</groupId>
      <artifactId>snakeyaml</artifactId>
      <version>1.33</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.4.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <relocations>
                <relocation>
                  <pattern>org.yaml.snakeyaml</pattern>
                  <shadedPattern>org.simpleyaml.configuration.implementation.snakeyaml.lib</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
