pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cc.funkemunky.utils</groupId>
  7. <artifactId>atlas-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.9</version>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <release.identifier>SNAPSHOT</release.identifier>
  13. </properties>
  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. <modules>
  35. <module>Atlas</module>
  36. <module>AtlasBungee</module>
  37. <module>AtlasExample</module>
  38. </modules>
  39. <repositories>
  40. <repository>
  41. <id>funkemunky-releases</id>
  42. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  43. </repository>
  44. </repositories>
  45. <dependencies>
  46. <dependency>
  47. <groupId>org.github.lombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. <version>1.18.0</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>cc.funkemunky.utils</groupId>
  54. <artifactId>java-rt</artifactId>
  55. <version>8</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. </dependencies>
  59. </project>