Advertisement
Guest User

Untitled

a guest
Aug 25th, 2022
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.44 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>net.test.plugin</groupId>
  8. <artifactId>foo</artifactId>
  9. <version>3.1.1</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>Foo</name>
  13.  
  14. <description>Description</description>
  15. <properties>
  16. <java.version>16</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19.  
  20. <build>
  21. <finalName>${project.name}</finalName>
  22. <defaultGoal>install</defaultGoal>
  23.  
  24. <plugins>
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.8.1</version>
  29. <configuration>
  30. <source>${java.version}</source>
  31. <target>${java.version}</target>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-shade-plugin</artifactId>
  37. <version>3.3.0</version>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>shade</goal>
  43. </goals>
  44. <configuration>
  45. <createDependencyReducedPom>false</createDependencyReducedPom>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51.  
  52. <resources>
  53. <resource>
  54. <directory>src/main/resources</directory>
  55. <filtering>true</filtering>
  56. </resource>
  57. </resources>
  58. </build>
  59.  
  60. <repositories>
  61. <repository>
  62. <id>papermc-repo</id>
  63. <url>https://papermc.io/repo/repository/maven-public/</url>
  64. </repository>
  65. <repository>
  66. <id>sonatype</id>
  67. <url>https://oss.sonatype.org/content/groups/public/</url>
  68. </repository>
  69. <repository>
  70. <id>aikar</id>
  71. <url>https://repo.aikar.co/content/groups/aikar/</url>
  72. </repository>
  73. <repository>
  74. <id>minecraft-repo</id>
  75. <url>https://libraries.minecraft.net/</url>
  76. </repository>
  77. <repository>
  78. <id>jeff-media-public</id>
  79. <url>https://hub.jeff-media.com/nexus/repository/jeff-media-public/</url>
  80. </repository>
  81. <repository>
  82. <id>jitpack.io</id>
  83. <url>https://jitpack.io</url>
  84. </repository>
  85. <repository>
  86. <id>codemc-snapshots</id>
  87. <url>https://repo.codemc.io/repository/maven-snapshots/</url>
  88. </repository>
  89. <repository>
  90. <id>codemc-repo</id>
  91. <url>https://repo.codemc.org/repository/maven-public/</url>
  92. <layout>default</layout>
  93. </repository>
  94. <repository>
  95. <id>sk89q-repo</id>
  96. <url>https://maven.enginehub.org/repo/</url>
  97. </repository>
  98. <repository>
  99. <id>xenondevs</id>
  100. <url>https://repo.xenondevs.xyz/#/releases/</url>
  101. </repository>
  102. </repositories>
  103.  
  104. <dependencies>
  105. <dependency>
  106. <groupId>com.destroystokyo.paper</groupId>
  107. <artifactId>paper-api</artifactId>
  108. <version>1.16.5-R0.1-SNAPSHOT</version>
  109. <scope>provided</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.projectlombok</groupId>
  113. <artifactId>lombok</artifactId>
  114. <version>1.18.24</version>
  115. <scope>provided</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.google.inject</groupId>
  119. <artifactId>guice</artifactId>
  120. <version>5.1.0</version>
  121. <scope>compile</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.mojang</groupId>
  125. <artifactId>authlib</artifactId>
  126. <version>1.5.25</version>
  127. <scope>provided</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.sk89q.worldguard</groupId>
  131. <artifactId>worldguard-bukkit</artifactId>
  132. <version>7.1.0-SNAPSHOT</version>
  133. <scope>provided</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.mongodb</groupId>
  137. <artifactId>mongodb-driver-sync</artifactId>
  138. <version>4.7.1</version>
  139. <scope>compile</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.github.simplix-softworks</groupId>
  143. <artifactId>SimplixStorage</artifactId>
  144. <version>3.2.3</version>
  145. <scope>compile</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>co.aikar</groupId>
  149. <artifactId>acf-paper</artifactId>
  150. <version>0.5.0-SNAPSHOT</version>
  151. <scope>compile</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.github.ben-manes.caffeine</groupId>
  155. <artifactId>caffeine</artifactId>
  156. <version>3.1.1</version>
  157. <scope>compile</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>de.studiocode.invui</groupId>
  161. <artifactId>InvUI</artifactId>
  162. <version>0.5-SNAPSHOT</version>
  163. <scope>compile</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.github.LoneDev6</groupId>
  167. <artifactId>api-itemsadder</artifactId>
  168. <version>3.0.0</version>
  169. <scope>provided</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.github.MilkBowl</groupId>
  173. <artifactId>VaultAPI</artifactId>
  174. <version>1.7</version>
  175. <scope>provided</scope>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.jeff_media</groupId>
  179. <artifactId>MorePersistentDataTypes</artifactId>
  180. <version>1.1.0</version>
  181. <scope>compile</scope>
  182. </dependency>
  183. </dependencies>
  184. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement