Guest User

Untitled

a guest
May 7th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>com.bluenova</groupId>
  8. <artifactId>FloorIsLava</artifactId>
  9. <version>1.0.5</version>
  10. <packaging>jar</packaging>
  11. <name>FloorIsLava</name>
  12. <description>
  13. You and your friends are trapped in a world where lava will rise till only one survives! Who will it be?
  14. </description>
  15. <properties>
  16. <java.version>21</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19.  
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-jar-plugin</artifactId>
  25. <configuration>
  26. <outputDirectory>C:\Users\gamer\IdeaProjects\Floor_is_Lava\server\plugins</outputDirectory>
  27. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-shade-plugin</artifactId>
  32. <version>3.2.4</version>
  33. <executions>
  34. <execution>
  35. <phase>package</phase>
  36. <goals>
  37. <goal>shade</goal>
  38. </goals>
  39. <configuration>
  40. <createDependencyReducedPom>false</createDependencyReducedPom>
  41. <relocations>
  42. <relocation>
  43. <pattern>org.json.simple</pattern>
  44. <shadedPattern>com.bluenova.floorislava.libs.jsonsimple</shadedPattern>
  45. </relocation>
  46. <relocation>
  47. <pattern>net.kyori.adventure</pattern>
  48. <shadedPattern>com.bluenova.floorislava.libs.adventure</shadedPattern>
  49. </relocation>
  50. </relocations>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <configuration>
  59. <source>14</source>
  60. <target>14</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. <resources>
  65. <resource>
  66. <directory>src/main/resources</directory>
  67. <filtering>true</filtering>
  68. </resource>
  69. </resources>
  70. </build>
  71.  
  72. <repositories>
  73. <repository>
  74. <id>papermc</id>
  75. <url>https://repo.papermc.io/repository/maven-public/</url>
  76. </repository>
  77. <repository>
  78. <id>spigot-repo</id>
  79. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  80. </repository>
  81. <repository>
  82. <id>enginehub-maven</id>
  83. <url>https://maven.enginehub.org/repo/</url>
  84. </repository>
  85. <repository>
  86. <id>OnARandomBox</id>
  87. <url>https://repo.onarandombox.com/content/groups/public/</url>
  88. </repository>
  89. <repository>
  90. <id>aikar</id>
  91. <url>https://repo.aikar.co/content/groups/aikar/</url>
  92. </repository>
  93. <repository>
  94. <id>sk89q-repo</id>
  95. <url>https://maven.enginehub.org/repo/</url>
  96. </repository>
  97. </repositories>
  98. <dependencyManagement>
  99. <dependencies>
  100. <dependency>
  101. <groupId>com.intellectualsites.bom</groupId>
  102. <artifactId>bom-newest</artifactId> <!-- Ref: https://github.com/IntellectualSites/bom -->
  103. <version>1.52</version>
  104. <scope>import</scope>
  105. <type>pom</type>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <dependencies>
  110. <dependency>
  111. <groupId>org.spigotmc</groupId>
  112. <artifactId>spigot-api</artifactId>
  113. <version>1.21.5-R0.1-SNAPSHOT</version>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.googlecode.json-simple</groupId>
  118. <artifactId>json-simple</artifactId>
  119. <version>1.1.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.sk89q.worldedit</groupId>
  123. <artifactId>worldedit-core</artifactId>
  124. <version>7.2.0-SNAPSHOT</version>
  125. <scope>provided</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.sk89q.worldedit</groupId>
  129. <artifactId>worldedit-bukkit</artifactId>
  130. <version>7.3.4</version>
  131. <scope>provided</scope>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.fastasyncworldedit</groupId>
  135. <artifactId>FastAsyncWorldEdit-Core</artifactId>
  136. <scope>provided</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.fastasyncworldedit</groupId>
  140. <artifactId>FastAsyncWorldEdit-Bukkit</artifactId>
  141. <scope>provided</scope>
  142. <exclusions>
  143. <exclusion>
  144. <artifactId>FastAsyncWorldEdit-Core</artifactId>
  145. <groupId>*</groupId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.sk89q.worldguard</groupId>
  151. <artifactId>worldguard-bukkit</artifactId>
  152. <version>7.0.13</version>
  153. <scope>provided</scope>
  154. </dependency>
  155. <dependency>
  156. <groupId>com.onarandombox.multiversecore</groupId>
  157. <artifactId>Multiverse-Core</artifactId>
  158. <version>4.3.1</version>
  159. <scope>provided</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>net.kyori</groupId>
  163. <artifactId>adventure-api</artifactId>
  164. <version>4.20.0</version>
  165. <scope>compile</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>net.kyori</groupId>
  169. <artifactId>adventure-platform-bukkit</artifactId>
  170. <version>4.3.4</version>
  171. <scope>compile</scope>
  172. </dependency>
  173. <dependency>
  174. <groupId>net.kyori</groupId>
  175. <artifactId>adventure-text-minimessage</artifactId>
  176. <version>4.20.0</version>
  177. </dependency>
  178. </dependencies>
  179. </project>
  180.  
Advertisement
Add Comment
Please, Sign In to add comment