pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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>me.lethunderhawk</groupId>
  7. <artifactId>BazaarFlux</artifactId>
  8. <version>1.2-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>BazaarFlux</name>
  11. <properties>
  12. <java.version>21</java.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>3.8.1</version>
  21. <configuration>
  22. <source>21</source>
  23. <target>21</target>
  24. <release>21</release>
  25. </configuration>
  26. </plugin>
  27. <plugin>
  28. <groupId>org.apache.maven.plugins</groupId>
  29. <artifactId>maven-shade-plugin</artifactId>
  30. <version>3.2.4</version>
  31. <executions>
  32. <execution>
  33. <phase>package</phase>
  34. <goals>
  35. <goal>shade</goal>
  36. </goals>
  37. <configuration>
  38. <createDependencyReducedPom>false</createDependencyReducedPom>
  39. </configuration>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. </plugins>
  44. <resources>
  45. <resource>
  46. <directory>src/main/resources</directory>
  47. <filtering>true</filtering>
  48. </resource>
  49. </resources>
  50. </build>
  51. <repositories>
  52. <repository>
  53. <id>papermc</id>
  54. <url>https://repo.papermc.io/repository/maven-public/</url>
  55. </repository>
  56. <repository>
  57. <id>enginehub-repo</id>
  58. <url>https://maven.enginehub.org/repo/</url>
  59. </repository>
  60. <repository>
  61. <id>sonatype</id>
  62. <url>https://oss.sonatype.org/content/groups/public/</url>
  63. </repository>
  64. <repository>
  65. <id>placeholderapi</id>
  66. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  67. </repository>
  68. <repository>
  69. <id>fluxapi</id>
  70. <name>Flux API</name>
  71. <url>https://git.famrupp.de/jan/FluxAPI_v1/</url>
  72. </repository>
  73. </repositories>
  74. <dependencies>
  75. <dependency>
  76. <groupId>io.papermc.paper</groupId>
  77. <artifactId>paper-api</artifactId>
  78. <version>1.21.10-R0.1-SNAPSHOT</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.spigotmc</groupId>
  83. <artifactId>spigot</artifactId>
  84. <version>1.21.10-R0.1-SNAPSHOT</version>
  85. <classifier>remapped-mojang</classifier>
  86. <scope>provided</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>me.clip</groupId>
  90. <artifactId>placeholderapi</artifactId>
  91. <version>2.11.7</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.sk89q.worldedit</groupId>
  96. <artifactId>worldedit-bukkit</artifactId>
  97. <version>7.4.0</version>
  98. <scope>provided</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>me.lethunderhawk</groupId>
  102. <artifactId>FluxAPI</artifactId>
  103. <version>1.2.4</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. </dependencies>
  107. </project>