<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.magmaguy</groupId>
  <artifactId>FreeMinecraftModels</artifactId>
  <version>2.5.0</version>
  <build>
    <finalName>FreeMinecraftModels</finalName>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.13.0</version>
        <configuration>
          <source>21</source>
          <target>21</target>
          <annotationProcessorPaths>
            <path>
              <groupId>org.projectlombok</groupId>
              <artifactId>lombok</artifactId>
              <version>${lombok.version}</version>
            </path>
          </annotationProcessorPaths>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.6.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <relocations>
            <relocation>
              <pattern>org.bstats</pattern>
              <shadedPattern>com.magmaguy.freeminecraftmodels.bstats</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.magmaguy.magmacore</pattern>
              <shadedPattern>com.magmaguy.freeminecraftmodels.magmacore</shadedPattern>
            </relocation>
            <relocation>
              <pattern>org.reflections</pattern>
              <shadedPattern>com.magmaguy.org.reflections</shadedPattern>
            </relocation>
            <relocation>
              <pattern>com.magmaguy.easyminecraftgoals</pattern>
              <shadedPattern>com.magmaguy.freeminecraftmodels.easyminecraftgoals</shadedPattern>
            </relocation>
          </relocations>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <repositories>
    <repository>
      <id>spigot-repo</id>
      <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
    </repository>
    <repository>
      <id>opencollab-snapshot</id>
      <url>https://repo.opencollab.dev/main/</url>
    </repository>
    <repository>
      <id>magmaguy-repo-releases</id>
      <name>MagmaGuy's Repository</name>
      <url>https://repo.magmaguy.com/releases</url>
    </repository>
    <repository>
      <id>magmaguy-repo-snapshots</id>
      <name>MagmaGuy's Snapshot Repository</name>
      <url>https://repo.magmaguy.com/snapshots</url>
    </repository>
    <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
    </repository>
  </repositories>
  <dependencies>
    <dependency>
      <groupId>org.spigotmc</groupId>
      <artifactId>spigot-api</artifactId>
      <version>1.21.4-R0.1-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.42</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.geysermc.floodgate</groupId>
      <artifactId>api</artifactId>
      <version>2.2.0-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.geysermc.geyser</groupId>
      <artifactId>api</artifactId>
      <version>2.7.0-SNAPSHOT</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.magmaguy</groupId>
      <artifactId>ResourcePackManager</artifactId>
      <version>1.6.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.magmaguy</groupId>
      <artifactId>EliteMobs</artifactId>
      <version>10.1.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>com.github.MilkBowl</groupId>
      <artifactId>VaultAPI</artifactId>
      <version>1.7</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <repository>
      <id>magmaguy-repo</id>
      <name>MagmaGuy's Repository</name>
      <url>https://repo.magmaguy.com/releases</url>
    </repository>
    <snapshotRepository>
      <id>magmaguy-repo-snapshots</id>
      <url>https://repo.magmaguy.com/snapshots</url>
    </snapshotRepository>
  </distributionManagement>
  <properties>
    <lombok.version>1.18.42</lombok.version>
    <maven.compiler.target>21</maven.compiler.target>
    <maven.compiler.source>21</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
</project>
