<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.gmail.filoghost.holographicdisplays</groupId> <artifactId>holographicdisplays-parent</artifactId> <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>holographicdisplays-plugin</artifactId> <name>HolographicDisplays Plugin</name> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>dmulloy2-repo</id> <url>https://repo.dmulloy2.net/nexus/repository/public/</url> </repository> <repository> <id>codemc-repo</id> <url>https://repo.codemc.io/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-api</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-utils</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-legacy</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-config</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-interfaces</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_8_r2</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_8_r3</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_9_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_9_r2</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_10_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_11_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_12_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_13_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_13_r2</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_14_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_15_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_16_r1</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_16_r2</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>holographicdisplays-nms-v1_16_r3</artifactId> </dependency> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot-api</artifactId> </dependency> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> </dependency> <dependency> <groupId>org.bstats</groupId> <artifactId>bstats-bukkit-lite</artifactId> </dependency> <dependency> <groupId>me.filoghost.updatechecker</groupId> <artifactId>updatechecker</artifactId> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>..</directory> <includes> <include>LICENSE.txt</include> <include>THIRD-PARTY.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <!-- Appends build number to plugin version on SNAPSHOT builds. --> <execution> <id>set-plugin-version</id> <phase>validate</phase> <goals> <goal>run</goal> </goals> <configuration> <exportAntProperties>true</exportAntProperties> <target> <property environment="env" /> <condition property="project.pluginVersion" value="${project.version}-b${env.BUILD_NUMBER}" else="${project.version}"> <and> <isset property="env.BUILD_NUMBER" /> <contains string="${project.version}" substring="SNAPSHOT" /> </and> </condition> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Implementation-Version>${project.pluginVersion}</Implementation-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <configuration> <createDependencyReducedPom>false</createDependencyReducedPom> <shadedArtifactAttached>false</shadedArtifactAttached> <artifactSet> <includes> <include>${project.groupId}:*</include> <include>org.bstats</include> <include>me.filoghost.updatechecker</include> </includes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/maven/</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.bstats</pattern> <shadedPattern>com.gmail.filoghost.holographicdisplays.metrics</shadedPattern> </relocation> <relocation> <pattern>me.filoghost.updatechecker</pattern> <shadedPattern>com.gmail.filoghost.holographicdisplays.updater</shadedPattern> </relocation> </relocations> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>