2019-08-23 17:37:16 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-04-19 12:09:48 +02:00
|
|
|
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">
|
2019-08-23 17:37:16 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-11-23 13:04:23 +01:00
|
|
|
<groupId>nl.pim16aap2.armoredElytra</groupId>
|
2019-08-23 17:37:16 +02:00
|
|
|
<artifactId>ArmoredElytra</artifactId>
|
2020-11-23 11:28:20 +01:00
|
|
|
<version>3.0</version>
|
2017-10-06 16:43:09 +02:00
|
|
|
|
2019-08-23 17:37:16 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2020-04-19 12:09:48 +02:00
|
|
|
|
|
|
|
<!-- bStats -->
|
2019-08-23 17:37:16 +02:00
|
|
|
<repository>
|
|
|
|
<id>CodeMC</id>
|
2020-04-19 12:09:48 +02:00
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
2019-08-23 17:37:16 +02:00
|
|
|
</repository>
|
2021-03-28 11:03:39 +02:00
|
|
|
|
|
|
|
<!-- checkstyle -->
|
|
|
|
<repository>
|
|
|
|
<id>checkstyle</id>
|
|
|
|
<url>https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle</url>
|
|
|
|
</repository>
|
2019-08-23 17:37:16 +02:00
|
|
|
</repositories>
|
2017-10-06 16:43:09 +02:00
|
|
|
|
2019-08-23 17:37:16 +02:00
|
|
|
<dependencies>
|
2020-04-19 12:09:48 +02:00
|
|
|
<!-- Spigot API (docs) -->
|
2019-04-28 16:09:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2020-04-19 12:09:48 +02:00
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-11-24 10:59:00 +01:00
|
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
2019-04-28 16:09:09 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-01-17 06:22:14 +01:00
|
|
|
|
2020-04-19 12:09:48 +02:00
|
|
|
<!-- Spigot API + (Craft)Bukkit API + NMS -->
|
2019-08-23 17:37:16 +02:00
|
|
|
<dependency>
|
2020-04-19 12:09:48 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
2020-11-24 10:59:00 +01:00
|
|
|
<version>1.16.4-R0.1-SNAPSHOT</version>
|
2019-08-23 17:37:16 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--bStats -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-10-06 16:43:09 +02:00
|
|
|
|
2019-08-23 17:37:16 +02:00
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>plugin.yml</include>
|
|
|
|
<include>en_US.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<configuration>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
2020-11-23 13:04:23 +01:00
|
|
|
<shadedPattern>nl.pim16aap2.armoredElytra.lib.bstats</shadedPattern>
|
2019-08-23 17:37:16 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-03-28 11:03:39 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>3.1.2</version>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
|
|
<artifactId>checkstyle</artifactId>
|
|
|
|
<version>8.41</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2019-08-23 17:37:16 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2017-09-05 12:20:32 +02:00
|
|
|
</project>
|