pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <!-- WorldEdit (Bukkit) API -->
  31. <dependency>
  32. <groupId>com.sk89q.worldedit</groupId>
  33. <artifactId>worldedit-bukkit</artifactId>
  34. <version>7.0.0-SNAPSHOT</version>
  35. <scope>provided</scope>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>org.bstats</groupId>
  39. <artifactId>bstats-bukkit</artifactId>
  40. </exclusion>
  41. </exclusions>
  42. </dependency>
  43. <!-- WorldEdit (Core) API -->
  44. <dependency>
  45. <groupId>com.sk89q.worldedit</groupId>
  46. <artifactId>worldedit-core</artifactId>
  47. <version>7.0.0-SNAPSHOT</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. </dependencies>
  51. </project>