mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-01 16:20:26 +01:00
04b82ad0a6
This lessens or removes most effects of spamming the PacketPlayInFlying (3, legacy 10), such as "magnet" or "repell" effects.
121 lines
3.7 KiB
XML
121 lines
3.7 KiB
XML
<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>
|
|
|
|
<!-- Informations -->
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpplugin</artifactId>
|
|
<name>NCPPlugin</name>
|
|
<version>static</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit</id>
|
|
<name>Bukkit</name>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcore</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatbukkit</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2512</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2545</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2602</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2645</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2691</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2763</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2794</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2808</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2882</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb2922</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb3026</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcb3043</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatcbdev</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>ncpcompatprotocollib</artifactId>
|
|
<version>static</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Properties -->
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<description>Mainly contains the plugin class and the factories.
|
|
|
|
Version updating is done for the NoCheatPlus sub-module.</description>
|
|
<parent>
|
|
<groupId>fr.neatmonster</groupId>
|
|
<artifactId>nocheatplus-parent</artifactId>
|
|
<version>static</version>
|
|
</parent>
|
|
</project> |