pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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>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_R2</artifactId>
  26. <version>${project.version}</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>cc.funkemunky.utils</groupId>
  31. <artifactId>Atlas_Compat_1_18</artifactId>
  32. <version>${project.version}</version>
  33. <scope>compile</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>it.unimi.dsi</groupId>
  37. <artifactId>fastutil</artifactId>
  38. <version>8.5.6</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>3.8.1</version>
  48. <configuration>
  49. <source>8</source>
  50. <target>8</target>
  51. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  52. <annotationProcessorPaths>
  53. <path>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. <version>1.18.20</version>
  57. </path>
  58. </annotationProcessorPaths>
  59. </configuration>
  60. </plugin>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-shade-plugin</artifactId>
  64. <version>3.2.4</version>
  65. <executions>
  66. <execution>
  67. <phase>package</phase>
  68. <goals>
  69. <goal>shade</goal>
  70. </goals>
  71. <configuration>
  72. <minimizeJar>true</minimizeJar>
  73. <filters>
  74. <filter>
  75. <artifact>cc.funkemunky.utils:Atlas</artifact>
  76. <includes>
  77. <incude>**</incude>
  78. </includes>
  79. </filter>
  80. <filter>
  81. <artifact>com.h2database:h2</artifact>
  82. <includes>
  83. <include>**</include>
  84. </includes>
  85. </filter>
  86. <filter>
  87. <artifact>cc.funkemunky.utils:Atlas_Compat_1_18</artifact>
  88. <includes>
  89. <incude>**</incude>
  90. </includes>
  91. </filter>
  92. <filter>
  93. <artifact>cc.funkemunky.utils:Atlas_Compat_1_18_R2</artifact>
  94. <includes>
  95. <incude>**</incude>
  96. </includes>
  97. </filter>
  98. </filters>
  99. </configuration>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>