pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.8</version>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.7.0</version>
  16. <configuration>
  17. <source>8</source>
  18. <target>8</target>
  19. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. <resources>
  24. <resource>
  25. <directory>src/main/resources</directory>
  26. <filtering>true</filtering>
  27. </resource>
  28. </resources>
  29. </build>
  30. <modules>
  31. <module>Atlas</module>
  32. <module>AtlasBungee</module>
  33. <module>AtlasExample</module>
  34. </modules>
  35. <repositories>
  36. <repository>
  37. <id>funkemunky-releases</id>
  38. <url>http://nexus.funkemunky.cc/content/repositories/releases/</url>
  39. </repository>
  40. </repositories>
  41. <dependencies>
  42. <dependency>
  43. <groupId>org.github.lombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <version>1.18.0</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>cc.funkemunky.utils</groupId>
  50. <artifactId>java-rt</artifactId>
  51. <version>8</version>
  52. <scope>provided</scope>
  53. </dependency>
  54. </dependencies>
  55. </project>