pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>me.lethunderhawk</groupId>
  7. <artifactId>bazaar-flux</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>sonatype</id>
  58. <url>https://oss.sonatype.org/content/groups/public/</url>
  59. </repository>
  60. <repository>
  61. <id>placeholderapi</id>
  62. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  63. </repository>
  64. </repositories>
  65. <dependencies>
  66. <dependency>
  67. <groupId>io.papermc.paper</groupId>
  68. <artifactId>paper-api</artifactId>
  69. <version>1.21.10-R0.1-SNAPSHOT</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>me.clip</groupId>
  74. <artifactId>placeholderapi</artifactId>
  75. <version>2.11.7</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. </dependencies>
  79. </project>