BukkitTelnet/pom.xml

166 lines
5.6 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2021-06-24 11:25:56 +00: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>me.totalfreedom</groupId>
<artifactId>BukkitTelnet</artifactId>
2021-12-12 06:48:34 +00:00
<version>4.7</version>
<packaging>jar</packaging>
2016-06-18 15:16:58 +00:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jar.finalName>${project.name}</jar.finalName>
</properties>
2016-06-18 15:16:58 +00:00
<name>BukkitTelnet</name>
<description>Admin telnet access for minecraft servers.</description>
<url>https://github.com/TotalFreedom/BukkitTelnet</url>
2016-06-18 15:16:58 +00:00
<licenses>
<license>
<name>TotalFreedom General License</name>
<url>https://github.com/TotalFreedom/License/blob/master/LICENSE.md</url>
</license>
</licenses>
2016-06-18 15:16:58 +00:00
<organization>
<name>Total Freedom</name>
<url>https://totalfreedom.me</url>
</organization>
2016-06-18 15:16:58 +00:00
<scm>
<connection>scm:git:git@github.com:TotalFreedomMC/BukkitTelnet.git</connection>
<developerConnection>scm:git:git@github.com:TotalFreedomMC/BukkitTelnet.git</developerConnection>
<url>git@github.com:TotalFreedomMC/BukkitTelnet.git</url>
</scm>
2016-06-18 15:16:58 +00:00
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
</repository>
2019-09-10 05:18:46 +00:00
<repository>
<id>essentialsx-repo</id>
<url>https://repo.essentialsx.net/releases/</url>
2019-09-10 05:18:46 +00:00
</repository>
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
</repositories>
2016-06-18 15:16:58 +00:00
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2022-04-01 06:41:31 +00:00
<version>1.18.2-R0.1-SNAPSHOT</version>
2022-03-31 05:39:32 +00:00
<scope>provided</scope>
</dependency>
2016-06-18 15:16:58 +00:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
2016-06-18 15:16:58 +00:00
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
2022-04-01 06:41:31 +00:00
<version>2.17.2</version>
<scope>compile</scope>
</dependency>
2016-06-18 15:16:58 +00:00
2019-09-10 05:18:46 +00:00
<dependency>
<groupId>net.essentialsx</groupId>
2020-03-30 06:05:25 +00:00
<artifactId>EssentialsX</artifactId>
2022-03-31 05:39:32 +00:00
<version>2.19.4</version>
2020-03-30 06:05:25 +00:00
<scope>provided</scope>
2019-09-10 05:18:46 +00:00
</dependency>
2021-06-24 11:25:56 +00:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
2022-03-31 05:39:32 +00:00
<version>20220320</version>
2021-06-24 11:25:56 +00:00
<scope>compile</scope>
</dependency>
</dependencies>
2016-06-18 15:16:58 +00:00
<build>
<plugins>
<!-- Compiler -->
2021-06-24 11:25:56 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2021-06-24 11:25:56 +00:00
<version>3.8.1</version>
<configuration>
2021-12-12 06:48:34 +00:00
<source>17</source>
<target>17</target>
</configuration>
</plugin>
2016-06-18 15:16:58 +00:00
<!-- Checkstyle -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>2.17</version>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
</configuration>
</plugin>
</plugins>
</build>
2016-06-18 15:16:58 +00:00
<reporting>
<!-- Checkstyle -->
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2022-03-31 05:39:32 +00:00
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
</plugin>
2016-06-18 15:16:58 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<version>2.17</version>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<failOnViolation>true</failOnViolation>
<failsOnError>true</failsOnError>
<consoleOutput>true</consoleOutput>
</configuration>
</plugin>
</plugins>
</reporting>
</project>