pom.xml 3.2 KB

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