pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>atlas-parent</artifactId>
  7. <groupId>cc.funkemunky.utils</groupId>
  8. <version>1.8.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>cc.funkemunky.example</groupId>
  12. <artifactId>AtlasExample</artifactId>
  13. <version>1.0</version>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-compiler-plugin</artifactId>
  19. <version>3.7.0</version>
  20. <configuration>
  21. <source>8</source>
  22. <target>8</target>
  23. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. <resources>
  28. <resource>
  29. <directory>src/main/resources</directory>
  30. <filtering>true</filtering>
  31. </resource>
  32. </resources>
  33. </build>
  34. <repositories>
  35. <repository>
  36. <id>aikar</id>
  37. <url>https://ci.emc.gs/nexus/content/groups/aikar</url>
  38. </repository>
  39. </repositories>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.github.spigot</groupId>
  43. <artifactId>1.8.8</artifactId>
  44. <version>1.8.8</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>co.aikar</groupId>
  49. <artifactId>fastutil-lite</artifactId>
  50. <version>1.0</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.github.spigot</groupId>
  55. <artifactId>1.13.2</artifactId>
  56. <version>1.13.2</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.github.spigot</groupId>
  61. <artifactId>1.7.10</artifactId>
  62. <version>1.7.10</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>cc.funkemunky.utils</groupId>
  67. <artifactId>Atlas</artifactId>
  68. <version>1.8.3</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. </dependencies>
  72. </project>