pom.xml 2.3 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. <parent>
  6. <artifactId>atlas-parent</artifactId>
  7. <groupId>cc.funkemunky.utils</groupId>
  8. <version>1.11.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>Atlas_Compat_1_19</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.8.1</version>
  22. <configuration>
  23. <source>8</source>
  24. <target>8</target>
  25. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  26. <annotationProcessorPaths>
  27. <path>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <version>1.18.20</version>
  31. </path>
  32. </annotationProcessorPaths>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>cc.funkemunky.utils</groupId>
  40. <artifactId>Atlas</artifactId>
  41. <version>${project.version}</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.spigotmc</groupId>
  46. <artifactId>spigot</artifactId>
  47. <version>1.19-R0.1</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.spigotmc</groupId>
  52. <artifactId>spigot-api</artifactId>
  53. <version>1.19-R0.1</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.github.spigot</groupId>
  58. <artifactId>1.17</artifactId>
  59. <version>1.17</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>