2018-04-24 12:47:51 -04:00
|
|
|
<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">
|
2022-05-19 22:35:48 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>pw.kaboom</groupId>
|
|
|
|
<artifactId>Extras</artifactId>
|
|
|
|
<version>master</version>
|
2019-12-17 13:23:24 -05:00
|
|
|
|
2022-05-19 22:35:48 -04:00
|
|
|
<properties>
|
2022-05-21 15:11:53 -04:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2022-05-19 22:35:48 -04:00
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2019-03-09 16:33:44 -05:00
|
|
|
|
2022-05-19 22:35:48 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2022-05-21 13:23:41 -04:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
2022-05-19 22:35:48 -04:00
|
|
|
<artifactId>paper-api</artifactId>
|
2023-04-01 18:58:23 -04:00
|
|
|
<version>1.19.4-R0.1-SNAPSHOT</version>
|
2022-05-21 13:23:41 -04:00
|
|
|
<scope>provided</scope>
|
2022-05-19 22:35:48 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-04-24 12:47:51 -04:00
|
|
|
|
2022-05-19 22:35:48 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
2022-05-20 15:22:30 -04:00
|
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
2022-05-19 22:35:48 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2018-04-24 12:47:51 -04:00
|
|
|
|
2022-05-19 22:35:48 -04:00
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2022-10-15 20:12:12 -04:00
|
|
|
<version>3.2.0</version>
|
2022-05-19 22:35:48 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>checkstyle</id>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2022-05-19 23:07:38 -04:00
|
|
|
<configLocation>checkstyle.xml</configLocation>
|
|
|
|
<suppressionsLocation>suppressions.xml</suppressionsLocation>
|
2022-05-19 22:35:48 -04:00
|
|
|
<failOnViolation>true</failOnViolation>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-04-24 12:47:51 -04:00
|
|
|
</project>
|
|
|
|
|