JaTiTV
78a0bd5f7e
- With this update the plugin has been renamed from 'CommandGUI' to 'T2C-CommandGUI'. - The plugin folder is now called 'T2C-CommandGUI'. - The commands 't2c-commandgui', 't2c-commandguihelp' and 't2c-commandgui-item' have been added - A new tab 'NoPermission' has been added to the functions, where it is adjustable: - Whether a message should be displayed if you click on the function but don't have permission for it. - CustomNoPermMessage - Whether a custom lore should be displayed if you don't have a permission for this function.
135 lines
4.5 KiB
XML
135 lines
4.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>net.t2code</groupId>
|
|
<artifactId>CommandGUI_V2</artifactId>
|
|
<version>2.8.5</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>CommandGUI</name>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<build>
|
|
<plugins>
|
|
<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>
|
|
<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>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<!-- repo.t2code / T2Code -->
|
|
<repository>
|
|
<id>Builders-Paradise</id>
|
|
<url>https://repo.t2code.net/repository/Builders-Paradise/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>T2Code</id>
|
|
<url>https://repo.t2code.net/repository/T2Code/</url>
|
|
</repository>
|
|
<!-- placeholderAPI -->
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- repo.t2code / T2Code -->
|
|
<dependency>
|
|
<groupId>net.t2code</groupId>
|
|
<artifactId>bungee</artifactId>
|
|
<version>1615</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code.minecraft.1_16.r2</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.16r2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code.minecraft.1_10.r1</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.10r1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code.minecraft.1_8.r1</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.8r1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code</groupId>
|
|
<artifactId>PlugmanGUI</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code</groupId>
|
|
<artifactId>T2CodeLib</artifactId>
|
|
<version>12.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.t2code</groupId>
|
|
<artifactId>LuckyBox-API</artifactId>
|
|
<version>4.2.2</version>
|
|
</dependency>
|
|
<!-- placeholderAPI -->
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
<version>4.0.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<version>1.7.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.22</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|