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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>pw.kaboom</groupId>
|
|
|
|
<artifactId>Extras</artifactId>
|
2018-08-02 07:32:11 -04:00
|
|
|
<version>master</version>
|
2019-03-09 16:33:44 -05:00
|
|
|
<properties>
|
2019-12-02 11:12:05 -05:00
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2019-03-09 16:33:44 -05:00
|
|
|
</properties>
|
|
|
|
|
2018-04-24 12:47:51 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2019-07-23 19:01:02 -04:00
|
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
2018-11-12 19:32:21 -05:00
|
|
|
</dependency>
|
2018-04-24 12:47:51 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-11-12 19:32:21 -05:00
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2018-04-24 12:47:51 -04:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
2018-05-28 11:27:30 -04:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2019-07-23 19:01:02 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<configLocation>${basedir}/checkstyle.xml</configLocation>
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
<enableRulesSummary>false</enableRulesSummary>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.0</version>
|
|
|
|
<configuration>
|
|
|
|
<compilerArgs>
|
|
|
|
<arg>-Xlint:all</arg>
|
|
|
|
</compilerArgs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2018-04-24 12:47:51 -04:00
|
|
|
</build>
|
|
|
|
</project>
|
|
|
|
|