Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.34 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.  
  6. <parent>
  7. <groupId>net.ess3</groupId>
  8. <artifactId>EssentialsParent</artifactId>
  9. <version>2.x-SNAPSHOT</version>
  10. </parent>
  11.  
  12. <artifactId>Essentials</artifactId>
  13.  
  14. <url>http://ess3.net/</url>
  15.  
  16. <organization>
  17. <name>Essentials Team</name>
  18. <url>http://ess3.net/</url>
  19. </organization>
  20.  
  21. <licenses>
  22. <license>
  23. <name>GPLv3</name>
  24. <url>http://www.gnu.org/copyleft/gpl.html</url>
  25. </license>
  26. </licenses>
  27.  
  28. <scm>
  29. <connection>scm:git:https://github.com/essentials/Essentials.git</connection>
  30. <developerConnection>scm:git:https://github.com/essentials/Essentials.git</developerConnection>
  31. <url>https://github.com/essentials/Essentials</url>
  32. </scm>
  33.  
  34. <issueManagement>
  35. <system>JIRA</system>
  36. <url>http://essentials3.atlassian.net</url>
  37. </issueManagement>
  38.  
  39. <ciManagement>
  40. <system>TeamCity</system>
  41. <url>http://ci.ess3.net/</url>
  42. </ciManagement>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <version>2.3.2</version>
  49. <configuration>
  50. <showDeprecation>true</showDeprecation>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.bukkit</groupId>
  58. <artifactId>bukkit</artifactId>
  59. <version>1.8-R0.1-SNAPSHOT</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>BOSEconomy</groupId>
  64. <artifactId>BOSEconomy</artifactId>
  65. <version>v0.7.8.1</version>
  66. <scope>system</scope>
  67. <systemPath>${project.basedir}/../lib/BOSEconomy.jar</systemPath>
  68. </dependency>
  69. <dependency>
  70. <groupId>de.bananaco</groupId>
  71. <artifactId>bPermissions</artifactId>
  72. <version>v2.12-DEV</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>iConomy</groupId>
  76. <artifactId>iConomy5</artifactId>
  77. <version>5</version>
  78. <scope>system</scope>
  79. <systemPath>${project.basedir}/../lib/iCo5.jar</systemPath>
  80. </dependency>
  81. <dependency>
  82. <groupId>iConomy</groupId>
  83. <artifactId>iConomy6</artifactId>
  84. <version>6</version>
  85. <scope>system</scope>
  86. <systemPath>${project.basedir}/../lib/iCo6.jar</systemPath>
  87. </dependency>
  88. <dependency>
  89. <groupId>net.ess3</groupId>
  90. <artifactId>GroupManager</artifactId>
  91. <version>${project.version}</version>
  92. <scope>system</scope>
  93. <systemPath>${project.basedir}/../EssentialsGroupManager/dist/EssentialsGroupManager.jar</systemPath>
  94. </dependency>
  95. <dependency>
  96. <groupId>MultiCurrency</groupId>
  97. <artifactId>MultiCurrency</artifactId>
  98. <version>2.2</version>
  99. <scope>system</scope>
  100. <systemPath>${project.basedir}/../lib/MultiCurrency.jar</systemPath>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.platymuus</groupId>
  104. <artifactId>bukkit-permissions</artifactId>
  105. <version>2.0</version>
  106. <scope>system</scope>
  107. <systemPath>${project.basedir}/../lib/PermissionsBukkit.jar</systemPath>
  108. </dependency>
  109. <dependency>
  110. <groupId>ru.tehkode</groupId>
  111. <artifactId>PermissionsEx</artifactId>
  112. <version>1.20.4</version>
  113. <scope>system</scope>
  114. <systemPath>${project.basedir}/../lib/PermissionsEx.jar</systemPath>
  115. </dependency>
  116. <dependency>
  117. <groupId>Privileges</groupId>
  118. <artifactId>Privileges</artifactId>
  119. <version>1.8.1</version>
  120. <scope>system</scope>
  121. <systemPath>${project.basedir}/../lib/Privileges.jar</systemPath>
  122. </dependency>
  123. <dependency>
  124. <groupId>SimplyPerms</groupId>
  125. <artifactId>SimplyPerms</artifactId>
  126. <version>1.7.6</version>
  127. <scope>system</scope>
  128. <systemPath>${project.basedir}/../lib/SimplyPerms.jar</systemPath>
  129. </dependency>
  130. <dependency>
  131. <groupId>net.milkbowl.vault</groupId>
  132. <artifactId>Vault</artifactId>
  133. <version>1.2.32</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>zPermissions</groupId>
  137. <artifactId>zPermissions</artifactId>
  138. <version>1.1</version>
  139. <scope>system</scope>
  140. <systemPath>${project.basedir}/../lib/zPermissions.jar</systemPath>
  141. </dependency>
  142. </dependencies>
  143. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement