pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.11.5</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>AtlasBukkit</module>
  56. </modules>
  57. <repositories>
  58. <repository>
  59. <id>funkemunky-releases</id>
  60. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  61. </repository>
  62. <repository>
  63. <id>aikar</id>
  64. <url>https://repo.aikar.co/nexus/content/groups/aikar/</url>
  65. </repository>
  66. </repositories>
  67. <dependencies>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <version>1.18.20</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. </dependencies>
  75. </project>