pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>AtlasBukkit</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>cc.funkemunky.utils</groupId>
  19. <artifactId>Atlas</artifactId>
  20. <version>${project.version}</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.funkemunky.utils</groupId>
  25. <artifactId>Atlas_Compat_1_18</artifactId>
  26. <version>${project.version}</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>it.unimi.dsi</groupId>
  31. <artifactId>fastutil</artifactId>
  32. <version>8.5.6</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-compiler-plugin</artifactId>
  41. <version>3.8.1</version>
  42. <configuration>
  43. <source>8</source>
  44. <target>8</target>
  45. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  46. <annotationProcessorPaths>
  47. <path>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <version>1.18.20</version>
  51. </path>
  52. </annotationProcessorPaths>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-shade-plugin</artifactId>
  58. <version>3.2.4</version>
  59. <executions>
  60. <execution>
  61. <phase>package</phase>
  62. <goals>
  63. <goal>shade</goal>
  64. </goals>
  65. <configuration>
  66. <minimizeJar>true</minimizeJar>
  67. <filters>
  68. <filter>
  69. <artifact>cc.funkemunky.utils:Atlas</artifact>
  70. <includes>
  71. <incude>**</incude>
  72. </includes>
  73. </filter>
  74. <filter>
  75. <artifact>cc.funkemunky.utils:Atlas_Compat_1_18</artifact>
  76. <includes>
  77. <incude>**</incude>
  78. </includes>
  79. </filter>
  80. </filters>
  81. </configuration>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>