|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>org.mineacademy</groupId> |
| 7 | + <artifactId>ChatControl-Free</artifactId> |
| 8 | + <version>5.9.1</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <properties> |
| 12 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | + |
| 14 | + <author>kangarko</author> |
| 15 | + <plugin.name>chatcontrol</plugin.name> |
| 16 | + <main.class>${project.groupId}.${plugin.name}.ChatControl</main.class> |
| 17 | + </properties> |
| 18 | + |
| 19 | + <repositories> |
| 20 | + <repository> |
| 21 | + <id>mineacademy-repo</id> |
| 22 | + <url>https://bitbucket.org/kangarko/libraries/raw/master</url> |
| 23 | + </repository> |
| 24 | + </repositories> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + <!-- The Spigot API and PaperSpigot server --> |
| 28 | + <dependency> |
| 29 | + <groupId>org.spigotmc</groupId> |
| 30 | + <artifactId>spigot-api</artifactId> |
| 31 | + <version>1.16.3-R0.1-SNAPSHOT</version> |
| 32 | + </dependency> |
| 33 | + <!-- No longer shipped in SpigotAPI but is present in the server --> |
| 34 | + <dependency> |
| 35 | + <groupId>org.apache.clerezza.ext</groupId> |
| 36 | + <artifactId>org.json.simple</artifactId> |
| 37 | + <version>0.4</version> |
| 38 | + </dependency> |
| 39 | + <!-- This is NOT used anywhere in ChatControl, only here to prevent compile |
| 40 | + errors from missing the log4j dependency that is shipped in the server jar --> |
| 41 | + <dependency> |
| 42 | + <groupId>org.apache.logging.log4j</groupId> |
| 43 | + <artifactId>log4j-core</artifactId> |
| 44 | + <version>2.13.3</version> |
| 45 | + </dependency> |
| 46 | + <!-- MineAcademy guaranteed availability repos for plugins --> |
| 47 | + <dependency> |
| 48 | + <groupId>org.mineacademy.plugin</groupId> |
| 49 | + <artifactId>AuthMe</artifactId> |
| 50 | + <version>5.6.0-SNAPSHOT-2418</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.mineacademy.plugin</groupId> |
| 54 | + <artifactId>EssentialsX</artifactId> |
| 55 | + <version>2.18.0.10</version> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.mineacademy.plugin</groupId> |
| 59 | + <artifactId>Factions</artifactId> |
| 60 | + <version>3.3.0</version> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.mineacademy.plugin</groupId> |
| 64 | + <artifactId>MassiveCore</artifactId> |
| 65 | + <version>3.3.0</version> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>org.mineacademy.plugin</groupId> |
| 69 | + <artifactId>Multiverse-Core</artifactId> |
| 70 | + <version>4.1.1-SNAPSHOT-787</version> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.mineacademy.plugin</groupId> |
| 74 | + <artifactId>PlaceholderAPI</artifactId> |
| 75 | + <version>2.10.9-DEV-96</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.mineacademy.plugin</groupId> |
| 79 | + <artifactId>ProtocolLib</artifactId> |
| 80 | + <version>4.6.0-SNAPSHOT-b473</version> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.mineacademy.plugin</groupId> |
| 84 | + <artifactId>Towny</artifactId> |
| 85 | + <version>0.96.2.0</version> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.mineacademy.plugin</groupId> |
| 89 | + <artifactId>Vault</artifactId> |
| 90 | + <version>1.7.3</version> |
| 91 | + </dependency> |
| 92 | + </dependencies> |
| 93 | + |
| 94 | + <build> |
| 95 | + <plugins> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.maven.plugins</groupId> |
| 98 | + <artifactId>maven-jar-plugin</artifactId> |
| 99 | + <version>3.2.0</version> |
| 100 | + </plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.apache.maven.plugins</groupId> |
| 103 | + <artifactId>maven-compiler-plugin</artifactId> |
| 104 | + <version>3.8.1</version> |
| 105 | + <configuration> |
| 106 | + <source>1.8</source> |
| 107 | + <target>1.8</target> |
| 108 | + </configuration> |
| 109 | + </plugin> |
| 110 | + </plugins> |
| 111 | + <resources> |
| 112 | + <resource> |
| 113 | + <directory>src/main/resources</directory> |
| 114 | + <filtering>true</filtering> |
| 115 | + </resource> |
| 116 | + </resources> |
| 117 | + </build> |
| 118 | +</project> |
0 commit comments