Advertisement
Guest User

Untitled

a guest
Dec 31st, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  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. <groupId>TheBeastUniverse</groupId>
  6. <artifactId>BeastSpawners</artifactId>
  7. <version>2.0</version>
  8.  
  9.  
  10. <repositories>
  11.  
  12. <repository>
  13. <id>codemc-repo</id>
  14. <url>https://repo.codemc.org/repository/maven-public/</url>
  15. <layout>default</layout>
  16. </repository>
  17. <!-- SuperiorSkyBlock -->
  18. <!-- CodeMC NMS -->
  19. <repository>
  20. <id>codemc-nms-repo</id>
  21. <url>https://repo.codemc.org/repository/nms/</url>
  22. <layout>default</layout>
  23. </repository>
  24.  
  25. <repository>
  26. <id>mvdw-software</id>
  27. <name>MVdW Public Repositories</name>
  28. <url>http://repo.mvdw-software.be/content/groups/public/</url>
  29. </repository>
  30.  
  31. <repository>
  32. <id>placeholderapi</id>
  33. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  34. </repository>
  35. <!--Vault API -->
  36. <repository>
  37. <id>jitpack.io</id>
  38. <url>https://jitpack.io</url>
  39. </repository>
  40. <repository>
  41. <id>spigot-repo</id>
  42. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  43. </repository>
  44.  
  45. </repositories>
  46.  
  47.  
  48.  
  49. <dependencies>
  50.  
  51. <dependency>
  52. <groupId>de.tr7zw</groupId>
  53. <artifactId>item-nbt-api</artifactId>
  54. <version>2.1.0</version>
  55. </dependency>
  56.  
  57. <dependency>
  58. <groupId>de.tr7zw</groupId>
  59. <artifactId>nbt-injector</artifactId>
  60. <version>2.1.0</version>
  61. <scope>compile</scope>
  62. </dependency>
  63.  
  64.  
  65. <dependency>
  66. <groupId>me.clip</groupId>
  67. <artifactId>placeholderapi</artifactId>
  68. <version>2.0.6</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. <!--Spigot API -->
  72. <!--You only need one of the two, don't put both. Spigot is recommended. -->
  73. <dependency>
  74. <groupId>org.spigotmc</groupId>
  75. <artifactId>spigot-api</artifactId>
  76. <version>1.12.2-R0.1-SNAPSHOT</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>be.maximvdw</groupId>
  81. <artifactId>MVdWPlaceholderAPI</artifactId>
  82. <version>3.0.1-SNAPSHOT</version>
  83. </dependency>
  84.  
  85.  
  86.  
  87. <!--Vault API -->
  88. <dependency>
  89. <groupId>com.github.MilkBowl</groupId>
  90. <artifactId>VaultAPI</artifactId>
  91. <version>1.7</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.apache.maven.plugins</groupId>
  99. <artifactId>maven-shade-plugin</artifactId>
  100. <version>3.2.1</version>
  101. <executions>
  102. <execution>
  103. <id>shade</id>
  104. <phase>package</phase>
  105. <goals>
  106. <goal>shade</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. <configuration>
  111. <relocations>
  112. <relocation>
  113. <pattern>de.tr7zw.changeme.nbtapi</pattern>
  114. <shadedPattern>me.MrAxe.BeastSpawners.nbt</shadedPattern>
  115. </relocation>
  116. <relocation>
  117. <pattern>de.tr7zw.nbtinjector</pattern>
  118. <shadedPattern>me.MrAxe.BeastSpawners.nbtinjector</shadedPattern>
  119. </relocation>
  120. </relocations>
  121. </configuration>
  122. </plugin>
  123.  
  124. </plugins>
  125. </build>
  126.  
  127. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement