pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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.1.0</version>
  28. <modelVersion>4.0.0</modelVersion>
  29. <artifactId>missilewars-plugin</artifactId>
  30. <dependencies>
  31. <dependency>
  32. <groupId>de.butzlabben</groupId>
  33. <artifactId>1_12</artifactId>
  34. <version>1.0</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>de.butzlabben</groupId>
  39. <artifactId>1_13</artifactId>
  40. <version>1.0</version>
  41. <scope>compile</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>de.butzlabben</groupId>
  45. <artifactId>1_13_FAWE</artifactId>
  46. <version>1.0</version>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>de.butzlabben</groupId>
  51. <artifactId>1_16_FAWE</artifactId>
  52. <version>1.0</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <!-- Other dependencies -->
  56. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  57. <dependency>
  58. <groupId>commons-io</groupId>
  59. <artifactId>commons-io</artifactId>
  60. <version>2.11.0</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/com.pro-crafting.mc/commandframework -->
  64. <dependency>
  65. <groupId>com.pro-crafting.mc</groupId>
  66. <artifactId>commandframework</artifactId>
  67. <version>0.2.1</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  71. <dependency>
  72. <groupId>com.fasterxml.jackson.core</groupId>
  73. <artifactId>jackson-core</artifactId>
  74. <version>2.12.4</version>
  75. <scope>compile</scope>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  78. <dependency>
  79. <groupId>com.fasterxml.jackson.core</groupId>
  80. <artifactId>jackson-databind</artifactId>
  81. <version>2.12.4</version>
  82. <scope>compile</scope>
  83. </dependency>
  84. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
  85. <dependency>
  86. <groupId>com.fasterxml.jackson.dataformat</groupId>
  87. <artifactId>jackson-dataformat-yaml</artifactId>
  88. <version>2.12.4</version>
  89. <scope>compile</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.bstats</groupId>
  93. <artifactId>bstats-bukkit</artifactId>
  94. <version>2.2.1</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <version>4.13.2</version>
  101. <scope>test</scope>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <finalName>MissileWars-${project.version}</finalName>
  106. <defaultGoal>package</defaultGoal>
  107. <sourceDirectory>src/main/java</sourceDirectory>
  108. </build>
  109. </project>