pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ This file is part of MissileWars (https://github.com/Butzlabben/missilewars).
  4. ~ Copyright (c) 2018-2021 Daniel Nägele.
  5. ~
  6. ~ MissileWars is free software: you can redistribute it and/or modify
  7. ~ it under the terms of the GNU General Public License as published by
  8. ~ the Free Software Foundation, either version 3 of the License, or
  9. ~ (at your option) any later version.
  10. ~
  11. ~ MissileWars is distributed in the hope that it will be useful,
  12. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ~ GNU General Public License for more details.
  15. ~
  16. ~ You should have received a copy of the GNU General Public License
  17. ~ along with MissileWars. If not, see <https://www.gnu.org/licenses/>.
  18. -->
  19. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xmlns="http://maven.apache.org/POM/4.0.0"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <parent>
  23. <artifactId>missilewars</artifactId>
  24. <groupId>de.butzlabben</groupId>
  25. <version>1.0</version>
  26. </parent>
  27. <version>4.7.2</version>
  28. <modelVersion>4.0.0</modelVersion>
  29. <artifactId>missilewars-plugin</artifactId>
  30. <repositories>
  31. <repository>
  32. <id>aikar</id>
  33. <url>https://repo.aikar.co/content/groups/aikar/</url>
  34. </repository>
  35. <repository>
  36. <id>placeholderapi</id>
  37. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  38. </repository>
  39. <repository>
  40. <id>minecraft-repo</id>
  41. <url>https://libraries.minecraft.net/</url>
  42. </repository>
  43. </repositories>
  44. <dependencies>
  45. <dependency>
  46. <groupId>de.butzlabben</groupId>
  47. <artifactId>FAWE_Paster</artifactId>
  48. <version>1.0</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <!-- Other dependencies -->
  52. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  53. <dependency>
  54. <groupId>commons-io</groupId>
  55. <artifactId>commons-io</artifactId>
  56. <version>2.16.1</version>
  57. </dependency>
  58. <!-- https://github.com/aikar/commands -->
  59. <dependency>
  60. <groupId>co.aikar</groupId>
  61. <artifactId>acf-paper</artifactId>
  62. <version>0.5.1-SNAPSHOT</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  65. <dependency>
  66. <groupId>com.fasterxml.jackson.core</groupId>
  67. <artifactId>jackson-databind</artifactId>
  68. <version>2.16.2</version>
  69. <scope>compile</scope>
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
  72. <dependency>
  73. <groupId>com.fasterxml.jackson.dataformat</groupId>
  74. <artifactId>jackson-dataformat-yaml</artifactId>
  75. <version>2.16.2</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.bstats</groupId>
  80. <artifactId>bstats-bukkit</artifactId>
  81. <version>3.0.2</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/com.github.MilkBowl/VaultAPI -->
  85. <dependency>
  86. <groupId>com.github.MilkBowl</groupId>
  87. <artifactId>VaultAPI</artifactId>
  88. <version>1.7.1</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. <!-- repo minecraft-repo -->
  92. <dependency>
  93. <groupId>com.mojang</groupId>
  94. <artifactId>authlib</artifactId>
  95. <version>1.5.25</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/com.github.placeholderapi/placeholderapi -->
  99. <dependency>
  100. <groupId>com.github.placeholderapi</groupId>
  101. <artifactId>placeholderapi</artifactId>
  102. <version>2.11.5</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. <version>4.13.2</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.github.stefvanschie.inventoryframework</groupId>
  113. <artifactId>IF</artifactId>
  114. <version>0.10.15</version>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <finalName>MissileWars-${project.version}</finalName>
  119. <defaultGoal>package</defaultGoal>
  120. <sourceDirectory>src/main/java</sourceDirectory>
  121. </build>
  122. </project>