Advertisement
Maybe_c

pom.xml

Nov 22nd, 2024
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  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.  
  7. <groupId>Maybe_c</groupId>
  8. <artifactId>FakeBindBungee</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>FakeBindBungee</name>
  13.  
  14. <properties>
  15. <java.version>21</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18.  
  19. <build>
  20. <defaultGoal>clean package</defaultGoal>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.13.0</version>
  26. <configuration>
  27. <source>9</source>
  28. <target>9</target>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-shade-plugin</artifactId>
  34. <version>3.6.0</version>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. <resources>
  46. <resource>
  47. <directory>src/main/resources</directory>
  48. <filtering>true</filtering>
  49. </resource>
  50. </resources>
  51. </build>
  52.  
  53. <repositories>
  54. <repository>
  55. <id>sonatype</id>
  56. <url>https://oss.sonatype.org/content/groups/public/</url>
  57. </repository>
  58. <repository>
  59. <id>bungeecord-repo</id>
  60. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  61. </repository>
  62. </repositories>
  63.  
  64. <dependencies>
  65. <dependency>
  66. <groupId>net.md-5</groupId>
  67. <artifactId>bungeecord-api</artifactId>
  68. <version>1.21-R0.1-SNAPSHOT</version>
  69. <type>jar</type>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.zaxxer</groupId>
  74. <artifactId>HikariCP</artifactId>
  75. <version>5.1.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.jakub.premium</groupId>
  79. <artifactId>jpremium-api</artifactId>
  80. <version>1.0.0</version>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.yaml</groupId>
  85. <artifactId>snakeyaml</artifactId>
  86. <version>2.2</version>
  87. </dependency>
  88. </dependencies>
  89. </project>
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement