pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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>FluxAPI</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <name>FluxAPI</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. </build>
  45. <repositories>
  46. <repository>
  47. <id>papermc</id>
  48. <url>https://repo.papermc.io/repository/maven-public/</url>
  49. </repository>
  50. <repository>
  51. <id>sonatype</id>
  52. <url>https://oss.sonatype.org/content/groups/public/</url>
  53. </repository>
  54. </repositories>
  55. <dependencies>
  56. <dependency>
  57. <groupId>io.papermc.paper</groupId>
  58. <artifactId>paper-api</artifactId>
  59. <version>1.21.10-R0.1-SNAPSHOT</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.spigotmc</groupId>
  64. <artifactId>spigot</artifactId>
  65. <version>1.21.10-R0.1-SNAPSHOT</version>
  66. <classifier>remapped-mojang</classifier>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>net.dmulloy2</groupId>
  71. <artifactId>ProtocolLib</artifactId>
  72. <version>5.4.0</version>
  73. </dependency>
  74. </dependencies>
  75. </project>