Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7.  
  8. <groupId>com.magmaguy</groupId>
  9. <artifactId>EliteMobs</artifactId>
  10. <version>7.1.2</version>
  11. <packaging>jar</packaging>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <build>
  18. <finalName>${project.artifactId}</finalName>
  19. <defaultGoal>clean resources:resources package</defaultGoal>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <version>3.6.2</version>
  25. <configuration>
  26. <source>1.8</source>
  27. <target>1.8</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-shade-plugin</artifactId>
  33. <version>3.1.0</version>
  34. <!-- Do not include the <configuration>...</configuration> part if you are using Sponge! -->
  35. <configuration>
  36. <relocations>
  37. <relocation>
  38. <pattern>org.bstats</pattern>
  39. <!-- Replace this with your package! -->
  40. <shadedPattern>your.package</shadedPattern>
  41. </relocation>
  42. </relocations>
  43. </configuration>
  44. <executions>
  45. <execution>
  46. <phase>package</phase>
  47. <goals>
  48. <goal>shade</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. <repositories>
  56. <!--Spigot repo-->
  57. <repository>
  58. <id>spigotmc-repo</id>
  59. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  60. </repository>
  61. <!--BStats repo-->
  62. <repository>
  63. <id>CodeMC</id>
  64. <url>https://repo.codemc.org/repository/maven-public</url>
  65. </repository>
  66. <!--WorldGuard repo-->
  67. <repository>
  68. <id>sk89q-repo</id>
  69. <url>http://maven.sk89q.com/repo/</url>
  70. </repository>
  71. <!--Vault repo-->
  72. <repository>
  73. <id>vault-repo</id>
  74. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  75. </repository>
  76. <!--PlaceholderAPI dependency-->
  77. <repository>
  78. <id>placeholderapi</id>
  79. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  80. </repository>
  81. </repositories>
  82.  
  83. <dependencies>
  84. <!--Spigot dependency-->
  85. <dependency>
  86. <groupId>org.spigotmc</groupId>
  87. <artifactId>spigot-api</artifactId>
  88. <version>1.14-R0.1-SNAPSHOT</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. <!--Bukkit dependency-->
  92. <dependency>
  93. <groupId>org.bukkit</groupId>
  94. <artifactId>bukkit</artifactId>
  95. <version>1.14-R0.1-SNAPSHOT</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. <!--BStats dependency-->
  99. <dependency>
  100. <groupId>org.bstats</groupId>
  101. <artifactId>bstats-bukkit</artifactId>
  102. <version>1.5</version>
  103. <scope>compile</scope>
  104. </dependency>
  105. <!--WorldGuard dependency-->
  106. <dependency>
  107. <groupId>com.sk89q.worldguard</groupId>
  108. <artifactId>worldguard-core</artifactId>
  109. <version>7.0.0-SNAPSHOT</version>
  110. <scope>provided</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.sk89q.worldguard</groupId>
  114. <artifactId>worldguard-legacy</artifactId>
  115. <version>7.0.0-SNAPSHOT</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <!--Vault dependency-->
  119. <dependency>
  120. <groupId>net.milkbowl.vault</groupId>
  121. <artifactId>VaultAPI</artifactId>
  122. <version>1.7</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <!--PlaceholderAPI dependency-->
  126. <dependency>
  127. <groupId>me.clip</groupId>
  128. <artifactId>placeholderapi</artifactId>
  129. <version>2.0.6</version>
  130. <scope>provided</scope>
  131. </dependency>
  132. </dependencies>
  133.  
  134. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement