Advertisement
qDaaz

Untitled

Jan 29th, 2021
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.43 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>me.elb1to.practice</groupId>
  8. <artifactId>Frost-SkillWars</artifactId>
  9. <version>1.0</version>
  10.  
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14.  
  15. <repositories>
  16. <repository>
  17. <id>sk89q-repo</id>
  18. <url>http://maven.sk89q.com/repo/</url>
  19. </repository>
  20. <repository>
  21. <id>fawe-repo</id>
  22. <url>http://ci.athion.net/job/FastAsyncWorldEdit/ws/mvn/</url>
  23. </repository>
  24. <repository>
  25. <id>placeholderapi</id>
  26. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  27. </repository>
  28. </repositories>
  29.  
  30. <dependencies>
  31. <!-- PaperSpigot -->
  32. <dependency>
  33. <groupId>org.papermc</groupId>
  34. <artifactId>PaperSpigot</artifactId>
  35. <version>1.8.8-R0.1-SNAPSHOT</version>
  36. <systemPath>${project.basedir}/libs/PaperSpigot-1.8.8-R0.1-SNAPSHOT.jar</systemPath>
  37. <scope>system</scope>
  38. </dependency>
  39.  
  40. <!-- KnockbackController -->
  41. <dependency>
  42. <groupId>me.elb1to.practice.controller</groupId>
  43. <artifactId>KnockbackController</artifactId>
  44. <version>1.0</version>
  45. <systemPath>${project.basedir}/libs/KnockbackController.jar</systemPath>
  46. <scope>compile</scope>
  47. </dependency>
  48.  
  49. <!-- FrozedTablist -->
  50. <dependency>
  51. <groupId>club.frozed.tablist</groupId>
  52. <artifactId>FrozedTablist</artifactId>
  53. <version>1.0</version>
  54. <systemPath>${project.basedir}/libs/FrozedTablist.jar</systemPath>
  55. <scope>system</scope>
  56. </dependency>
  57.  
  58. <!-- WorldEdit -->
  59. <dependency>
  60. <groupId>com.sk89q</groupId>
  61. <artifactId>worldedit</artifactId>
  62. <version>6.0.0-SNAPSHOT</version>
  63. <scope>provided</scope>
  64. </dependency>
  65.  
  66. <!-- FastAsyncWorldEdit -->
  67. <dependency>
  68. <groupId>com.boydti</groupId>
  69. <artifactId>fawe-api</artifactId>
  70. <version>latest</version>
  71. <scope>provided</scope>
  72. </dependency>
  73.  
  74. <!-- PlaceholderAPI -->
  75. <dependency>
  76. <groupId>me.clip</groupId>
  77. <artifactId>placeholderapi</artifactId>
  78. <version>2.10.9</version>
  79. <scope>provided</scope>
  80. </dependency>
  81.  
  82. <!-- Google Gson -->
  83. <dependency>
  84. <groupId>com.google.code.gson</groupId>
  85. <artifactId>gson</artifactId>
  86. <version>2.8.6</version>
  87. <scope>compile</scope>
  88. </dependency>
  89.  
  90. <!-- MongoDB Java Driver -->
  91. <dependency>
  92. <groupId>org.mongodb</groupId>
  93. <artifactId>mongo-java-driver</artifactId>
  94. <version>3.10.2</version>
  95. <scope>compile</scope>
  96. </dependency>
  97.  
  98. <!-- Lombok -->
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <version>1.18.12</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. </dependencies>
  106.  
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <configuration>
  113. <source>1.8</source>
  114. <target>1.8</target>
  115. </configuration>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-shade-plugin</artifactId>
  120. <version>3.2.4</version>
  121. <executions>
  122. <execution>
  123. <phase>package</phase>
  124. <goals>
  125. <goal>shade</goal>
  126. </goals>
  127. </execution>
  128. </executions>
  129. </plugin>
  130. </plugins>
  131. </build>
  132. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement