pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.6.5</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. </modules>
  34. <repositories>
  35. <repository>
  36. <id>funkemunky-releases</id>
  37. <url>http://nexus.funkemunky.cc/content/repositories/releases/</url>
  38. </repository>
  39. </repositories>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.github.lombok</groupId>
  43. <artifactId>lombok</artifactId>
  44. <version>1.18.0</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>cc.funkemunky.utils</groupId>
  49. <artifactId>java-rt</artifactId>
  50. <version>8</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. </dependencies>
  54. </project>