pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>1_13</artifactId>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.sk89q.worldedit</groupId>
  32. <artifactId>worldedit-bukkit</artifactId>
  33. <version>7.0.0-SNAPSHOT</version>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sk89q.worldedit</groupId>
  38. <artifactId>worldedit-core</artifactId>
  39. <version>7.0.0-SNAPSHOT</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.boydti</groupId>
  44. <artifactId>fawe-api</artifactId>
  45. <version>latest</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. </dependencies>
  49. </project>