minesire

Untitled

Feb 6th, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.19 KB | None | 0 0
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>me.xtomyserrax.StaffFacilities</groupId>
  4. <artifactId>Main</artifactId>
  5. <version>5.0.6</version>
  6. <name>StaffFacilities</name>
  7. <url>https://www.spigotmc.org/resources/staff-facilities.13097/</url>
  8.  
  9. <build>
  10. <finalName>${project.name}</finalName>
  11.  
  12. <!-- Resources -->
  13. <resources>
  14. <resource>
  15. <targetPath>.</targetPath>
  16. <filtering>true</filtering>
  17. <directory>${basedir}</directory>
  18. <includes>
  19. <include>*.yml</include>
  20. <include>language/*.yml</include>
  21. <include>*.properties</include>
  22. </includes>
  23. </resource>
  24. </resources>
  25.  
  26. <!-- Plugins -->
  27. <plugins>
  28. <!-- Compilation plugin -->
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>3.1</version>
  33. <configuration>
  34. <source>1.8</source>
  35. <target>1.8</target>
  36. <showDeprecation>true</showDeprecation>
  37. <showWarnings>true</showWarnings>
  38. <fork>true</fork>
  39. <compilerArgs>
  40. <arg>-parameters</arg>
  41. </compilerArgs>
  42. </configuration>
  43. </plugin>
  44.  
  45. <!-- JAR creation plugin -->
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-jar-plugin</artifactId>
  49. <version>2.4</version>
  50. </plugin>
  51.  
  52. <!-- Release plugin -->
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-release-plugin</artifactId>
  56. <version>2.3.2</version>
  57. </plugin>
  58.  
  59. <!-- Shade plugin -->
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-shade-plugin</artifactId>
  63. <version>3.1.0</version>
  64. <configuration>
  65. <relocations>
  66. <relocation>
  67. <pattern>org.bstats.bukkit</pattern>
  68. <shadedPattern>me.xtomyserrax.StaffFacilities.metrics</shadedPattern>
  69. </relocation>
  70. <relocation>
  71. <pattern>io.papermc.lib</pattern>
  72. <shadedPattern>me.xtomyserrax.StaffFacilities.paperlib</shadedPattern>
  73. </relocation>
  74. <relocation>
  75. <pattern>co.aikar.commands</pattern>
  76. <shadedPattern>me.xtomyserrax.StaffFacilities.acflib</shadedPattern>
  77. </relocation>
  78. </relocations>
  79. <artifactSet>
  80. <excludes>
  81. <exclude>org.jetbrains:annotations</exclude>
  82. </excludes>
  83. </artifactSet>
  84. </configuration>
  85. <executions>
  86. <execution>
  87. <phase>package</phase>
  88. <goals>
  89. <goal>shade</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. <!-- Dependencies -->
  97. <dependencies>
  98. <dependency>
  99. <groupId>org.spigotmc</groupId>
  100. <artifactId>spigot-api</artifactId>
  101. <version>1.16.4-R0.1-SNAPSHOT</version>
  102. <scope>provided</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.bstats</groupId>
  106. <artifactId>bstats-bukkit</artifactId>
  107. <version>1.7</version>
  108. <scope>compile</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>me.clip</groupId>
  112. <artifactId>placeholderapi</artifactId>
  113. <version>2.10.9</version>
  114. <scope>provided</scope>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.github.xtomyserrax</groupId>
  118. <artifactId>StaffFacilities</artifactId>
  119. <version>5.0.6</version>
  120. <scope>provided</scope>
  121. </dependency>
  122. <dependency>
  123. <groupId>io.papermc</groupId>
  124. <artifactId>paperlib</artifactId>
  125. <version>1.0.5</version>
  126. <scope>compile</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>co.aikar</groupId>
  130. <artifactId>acf-paper</artifactId>
  131. <version>0.5.0-SNAPSHOT</version>
  132. </dependency>
  133. </dependencies>
  134.  
  135. <!-- Repositories -->
  136. <repositories>
  137. <repository>
  138. <id>spigot-repo</id>
  139. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  140. </repository>
  141. <repository>
  142. <id>placeholderapi-repo</id>
  143. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  144. </repository>
  145. <repository>
  146. <id>bstats-repo</id>
  147. <url>https://repo.codemc.org/repository/maven-public</url>
  148. </repository>
  149. <repository>
  150. <id>jitpack.io</id>
  151. <url>https://jitpack.io</url>
  152. </repository>
  153. <repository>
  154. <id>papermc</id>
  155. <url>https://papermc.io/repo/repository/maven-public/</url>
  156. </repository>
  157. <repository>
  158. <id>aikar</id>
  159. <url>https://repo.aikar.co/content/groups/aikar/</url>
  160. </repository>
  161. </repositories>
  162.  
  163. <properties>
  164. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  165. </properties>
  166.  
  167. </project>
Add Comment
Please, Sign In to add comment