Advertisement
DenyCzech

Untitled

Jan 15th, 2018
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.93 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>com.massivecraft</groupId>
  6. <artifactId>PvPCraftFactions</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>PvPCraftFactions</name>
  11.  
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <build>
  17. <defaultGoal>clean package install</defaultGoal>
  18. <finalName>${project.name}</finalName>
  19. <sourceDirectory>src/main/java</sourceDirectory>
  20. <resources>
  21. <resource>
  22. <filtering>true</filtering>
  23. <directory>src/main/resources/</directory>
  24. </resource>
  25. </resources>
  26. <plugins>
  27. <plugin>
  28. <artifactId>maven-compiler-plugin</artifactId>
  29. <version>3.5.1</version>
  30. <configuration>
  31. <encoding>utf8</encoding>
  32. <source>1.8</source>
  33. <target>1.8</target>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-shade-plugin</artifactId>
  39. <version>2.4.3</version>
  40. <configuration>
  41. <createDependencyReducedPom>false</createDependencyReducedPom>
  42. <relocations>
  43. <relocation>
  44. <pattern>mkremins.fanciful</pattern>
  45. <shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
  46. </relocation>
  47. <relocation>
  48. <pattern>com.google.gson</pattern>
  49. <shadedPattern>com.massivecraft.factions.shade.com.google.gson</shadedPattern>
  50. </relocation>
  51. <relocation>
  52. <pattern>com.zaxxer.hikari</pattern>
  53. <shadedPattern>com.massivecraft.factions.shade.com.zaxxer.hikari</shadedPattern>
  54. </relocation>
  55. </relocations>
  56. </configuration>
  57. <executions>
  58. <execution>
  59. <phase>package</phase>
  60. <goals>
  61. <goal>shade</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68.  
  69. <dependencies>
  70. <dependency>
  71. <groupId>org.spigotmc</groupId>
  72. <artifactId>spigot-api</artifactId>
  73. <version>1.12.2-R0.1-SNAPSHOT</version>
  74. <scope>provided</scope>
  75. <exclusions>
  76. <exclusion>
  77. <artifactId>bungeecord-chat</artifactId>
  78. <groupId>net.md-5</groupId>
  79. </exclusion>
  80. <exclusion>
  81. <artifactId>persistence-api</artifactId>
  82. <groupId>javax.persistence</groupId>
  83. </exclusion>
  84. <exclusion>
  85. <artifactId>junit</artifactId>
  86. <groupId>junit</groupId>
  87. </exclusion>
  88. <exclusion>
  89. <artifactId>guava</artifactId>
  90. <groupId>com.google.guava</groupId>
  91. </exclusion>
  92. <exclusion>
  93. <artifactId>gson</artifactId>
  94. <groupId>com.google.code.gson</groupId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>net.milkbowl.vault</groupId>
  100. <artifactId>VaultAPI</artifactId>
  101. <version>1.6</version>
  102. <scope>provided</scope>
  103. <exclusions>
  104. <exclusion>
  105. <artifactId>bukkit</artifactId>
  106. <groupId>org.bukkit</groupId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.sk89q</groupId>
  112. <artifactId>worldguard</artifactId>
  113. <version>6.1.1-SNAPSHOT</version>
  114. <scope>provided</scope>
  115. <exclusions>
  116. <exclusion>
  117. <artifactId>bukkit</artifactId>
  118. <groupId>org.bukkit</groupId>
  119. </exclusion>
  120. <exclusion>
  121. <artifactId>bukkit-classloader-check</artifactId>
  122. <groupId>com.sk89q.spigot</groupId>
  123. </exclusion>
  124. <exclusion>
  125. <artifactId>commandbook</artifactId>
  126. <groupId>com.sk89q</groupId>
  127. </exclusion>
  128. <exclusion>
  129. <artifactId>jsr305</artifactId>
  130. <groupId>com.google.code.findbugs</groupId>
  131. </exclusion>
  132. <exclusion>
  133. <artifactId>js</artifactId>
  134. <groupId>rhino</groupId>
  135. </exclusion>
  136. <exclusion>
  137. <artifactId>truezip</artifactId>
  138. <groupId>de.schlichtherle</groupId>
  139. </exclusion>
  140. <exclusion>
  141. <artifactId>jchronic</artifactId>
  142. <groupId>com.sk89q</groupId>
  143. </exclusion>
  144. <exclusion>
  145. <artifactId>worldedit</artifactId>
  146. <groupId>com.sk89q</groupId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.sk89q.worldedit</groupId>
  152. <artifactId>worldedit-bukkit</artifactId>
  153. <version>6.1.1-SNAPSHOT</version>
  154. <scope>provided</scope>
  155. <exclusions>
  156. <exclusion>
  157. <artifactId>bukkit</artifactId>
  158. <groupId>org.bukkit</groupId>
  159. </exclusion>
  160. <exclusion>
  161. <artifactId>jsr305</artifactId>
  162. <groupId>com.google.code.findbugs</groupId>
  163. </exclusion>
  164. <exclusion>
  165. <artifactId>bukkit-classloader-check</artifactId>
  166. <groupId>org.sk89q.bukkit</groupId>
  167. </exclusion>
  168. <exclusion>
  169. <artifactId>dummypermscompat</artifactId>
  170. <groupId>com.sk89q</groupId>
  171. </exclusion>
  172. <exclusion>
  173. <artifactId>jchronic</artifactId>
  174. <groupId>com.sk89q</groupId>
  175. </exclusion>
  176. <exclusion>
  177. <artifactId>js</artifactId>
  178. <groupId>rhino</groupId>
  179. </exclusion>
  180. <exclusion>
  181. <artifactId>truezip</artifactId>
  182. <groupId>de.schlichtherle</groupId>
  183. </exclusion>
  184. <exclusion>
  185. <artifactId>jlibnoise</artifactId>
  186. <groupId>com.sk89q.lib</groupId>
  187. </exclusion>
  188. <exclusion>
  189. <artifactId>paranamer</artifactId>
  190. <groupId>com.thoughtworks.paranamer</groupId>
  191. </exclusion>
  192. <exclusion>
  193. <artifactId>guava</artifactId>
  194. <groupId>com.google.guava</groupId>
  195. </exclusion>
  196. <exclusion>
  197. <artifactId>gson</artifactId>
  198. <groupId>com.google.code.gson</groupId>
  199. </exclusion>
  200. <exclusion>
  201. <artifactId>snakeyaml</artifactId>
  202. <groupId>org.yaml</groupId>
  203. </exclusion>
  204. </exclusions>
  205. </dependency>
  206. <dependency>
  207. <groupId>net.ess3</groupId>
  208. <artifactId>EssentialsX</artifactId>
  209. <version>2.0.1</version>
  210. <scope>provided</scope>
  211. </dependency>
  212. <dependency>
  213. <groupId>net.ess3</groupId>
  214. <artifactId>EssentialsXChat</artifactId>
  215. <version>2.0.1</version>
  216. <scope>provided</scope>
  217. <exclusions>
  218. <exclusion>
  219. <artifactId>bukkit</artifactId>
  220. <groupId>org.bukkit</groupId>
  221. </exclusion>
  222. <exclusion>
  223. <artifactId>lombok</artifactId>
  224. <groupId>org.projectlombok</groupId>
  225. </exclusion>
  226. <exclusion>
  227. <artifactId>Essentials</artifactId>
  228. <groupId>net.ess3</groupId>
  229. </exclusion>
  230. </exclusions>
  231. </dependency>
  232. <dependency>
  233. <groupId>mkremins</groupId>
  234. <artifactId>fanciful</artifactId>
  235. <version>0.4.0-SNAPSHOT</version>
  236. <scope>compile</scope>
  237. <exclusions>
  238. <exclusion>
  239. <artifactId>gson</artifactId>
  240. <groupId>com.google.code.gson</groupId>
  241. </exclusion>
  242. </exclusions>
  243. </dependency>
  244. <dependency>
  245. <groupId>org.dynmap</groupId>
  246. <artifactId>dynmap</artifactId>
  247. <version>2.0</version>
  248. <scope>provided</scope>
  249. <exclusions>
  250. <exclusion>
  251. <artifactId>bukkit</artifactId>
  252. <groupId>org.bukkit</groupId>
  253. </exclusion>
  254. <exclusion>
  255. <artifactId>Permissions</artifactId>
  256. <groupId>com.nijikokun.bukkit</groupId>
  257. </exclusion>
  258. <exclusion>
  259. <artifactId>bPermissions</artifactId>
  260. <groupId>de.bananaco</groupId>
  261. </exclusion>
  262. <exclusion>
  263. <artifactId>EssentialsGroupManager</artifactId>
  264. <groupId>org.anjocaido</groupId>
  265. </exclusion>
  266. <exclusion>
  267. <artifactId>spoutpluginapi</artifactId>
  268. <groupId>org.getspout</groupId>
  269. </exclusion>
  270. <exclusion>
  271. <artifactId>PermissionsBukkit</artifactId>
  272. <groupId>com.platymuus.bukkit.permissions</groupId>
  273. </exclusion>
  274. <exclusion>
  275. <artifactId>PermissionsEx</artifactId>
  276. <groupId>ru.tehkode</groupId>
  277. </exclusion>
  278. </exclusions>
  279. </dependency>
  280. <dependency>
  281. <groupId>com.google.guava</groupId>
  282. <artifactId>guava</artifactId>
  283. <version>10.0.1</version>
  284. <scope>provided</scope>
  285. <exclusions>
  286. <exclusion>
  287. <artifactId>jsr305</artifactId>
  288. <groupId>com.google.code.findbugs</groupId>
  289. </exclusion>
  290. </exclusions>
  291. </dependency>
  292. <dependency>
  293. <groupId>com.google.code.gson</groupId>
  294. <artifactId>gson</artifactId>
  295. <version>2.8.2</version>
  296. <scope>compile</scope>
  297. </dependency>
  298. <dependency>
  299. <groupId>com.drtshock</groupId>
  300. <artifactId>PlayerVaults</artifactId>
  301. <version>3.6.0</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>me.clip</groupId>
  305. <artifactId>placeholderapi</artifactId>
  306. <version>2.8.2</version>
  307. <scope>provided</scope>
  308. </dependency>
  309. <dependency>
  310. <groupId>be.maximvdw</groupId>
  311. <artifactId>MVdWPlaceholderAPI</artifactId>
  312. <version>2.2.3-SNAPSHOT</version>
  313. <exclusions>
  314. <exclusion>
  315. <groupId>org.spigotmc</groupId>
  316. <artifactId>spigot</artifactId>
  317. </exclusion>
  318. </exclusions>
  319. </dependency>
  320. <dependency>
  321. <groupId>com.google.collections</groupId>
  322. <artifactId>google-collections</artifactId>
  323. <version>1.0-rc2</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>com.zaxxer</groupId>
  327. <artifactId>HikariCP</artifactId>
  328. <version>2.4.7</version>
  329. <scope>compile</scope>
  330. </dependency>
  331. </dependencies>
  332.  
  333. <repositories>
  334. <repository>
  335. <id>vault-repo</id>
  336. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  337. </repository>
  338. <repository>
  339. <id>ess-repo</id>
  340. <url>http://ci.ender.zone/plugin/repository/everything/</url>
  341. </repository>
  342. <repository>
  343. <id>spigot-repo</id>
  344. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  345. </repository>
  346. <repository>
  347. <id>maven.sk89q.com</id>
  348. <url>http://maven.sk89q.com/repo/</url>
  349. </repository>
  350. <repository>
  351. <id>repo.mikeprimm.com</id>
  352. <url>http://repo.mikeprimm.com/</url>
  353. </repository>
  354. <repository>
  355. <id>placeholderapi</id>
  356. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  357. </repository>
  358. <repository>
  359. <id>mvdw-software</id>
  360. <url>http://repo.mvdw-software.be/content/groups/public/</url>
  361. </repository>
  362. </repositories>
  363. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement