pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cc.funkemunky.utils</groupId>
  5. <artifactId>atlas-parent</artifactId>
  6. <packaging>pom</packaging>
  7. <version>1.12.1.1</version>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. </properties>
  11. <distributionManagement>
  12. <snapshotRepository>
  13. <id>funkemunky-snapshots</id>
  14. <url>https://nexus.funkemunky.cc/content/repositories/snapshots/</url>
  15. </snapshotRepository>
  16. <repository>
  17. <id>funkemunky-releases</id>
  18. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  19. </repository>
  20. </distributionManagement>
  21. <build>
  22. <plugins>
  23. <plugin>
  24. <groupId>org.apache.maven.plugins</groupId>
  25. <artifactId>maven-compiler-plugin</artifactId>
  26. <version>3.7.0</version>
  27. <configuration>
  28. <source>8</source>
  29. <target>8</target>
  30. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-deploy-plugin</artifactId>
  36. <version>2.8.1</version>
  37. <configuration>
  38. <skip>true</skip>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. <resources>
  43. <resource>
  44. <directory>src/main/resources</directory>
  45. <filtering>true</filtering>
  46. </resource>
  47. </resources>
  48. </build>
  49. <modules>
  50. <module>Atlas</module>
  51. <module>AtlasBungee</module>
  52. <module>AtlasExample</module>
  53. <module>AtlasVelocity</module>
  54. <module>Atlas_Compat_1_18</module>
  55. <module>Atlas_Compat_1_18_R2</module>
  56. <module>Atlas_Compat_1_19</module>
  57. <module>AtlasBukkit</module>
  58. </modules>
  59. <repositories>
  60. <repository>
  61. <id>funkemunky-releases</id>
  62. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  63. </repository>
  64. <repository>
  65. <id>aikar</id>
  66. <url>https://repo.aikar.co/nexus/content/groups/aikar/</url>
  67. </repository>
  68. </repositories>
  69. <dependencies>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <version>1.18.22</version>
  74. <scope>provided</scope>
  75. </dependency>
  76. </dependencies>
  77. </project>