Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 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.jryanh</groupId>
  8. <artifactId>mcMMO</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <repositories>
  12. <repository>
  13. <id>spigot-repo</id>
  14. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <!--Spigot API-->
  19. <dependency>
  20. <groupId>org.spigotmc</groupId>
  21. <artifactId>spigot-api</artifactId>
  22. <version>1.12.2-R0.1-SNAPSHOT</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <!--Spigot-->
  26. <dependency>
  27. <groupId>org.spigotmc</groupId>
  28. <artifactId>spigot</artifactId>
  29. <version>LATEST</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <!--Bukkit API-->
  33. <dependency>
  34. <groupId>org.bukkit</groupId>
  35. <artifactId>bukkit</artifactId>
  36. <version>1.12.2-R0.1-SNAPSHOT</version>
  37. <scope>provided</scope>
  38. </dependency>
  39. <!--MongoDB-->
  40. <dependency>
  41. <groupId>org.mongodb</groupId>
  42. <artifactId>mongodb-driver</artifactId>
  43. <version>3.5.0</version>
  44. </dependency>
  45. </dependencies>
  46.  
  47. <build>
  48. <sourceDirectory>src/main/java</sourceDirectory>
  49. <resources>
  50. <resource>
  51. <directory>src/main/resources</directory>
  52. </resource>
  53. </resources>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-shade-plugin</artifactId>
  58. <version>2.4.3</version>
  59. <configuration>
  60. <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
  61. </configuration>
  62. <executions>
  63. <execution>
  64. <phase>package</phase>
  65. <goals>
  66. <goal>shade</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. </plugin>
  71. <plugin>
  72. <groupId>org.apache.maven.plugins</groupId>
  73. <artifactId>maven-compiler-plugin</artifactId>
  74. <configuration>
  75. <source>1.8</source>
  76. <target>1.8</target>
  77. </configuration>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement