Advertisement
Guest User

Untitled

a guest
May 24th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>jjbat_000.minecraftplanetearth</groupId>
  7. <artifactId>MinecraftPlanetEarth</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10.  
  11. <name>MinecraftPlanetEarth</name>
  12.  
  13.  
  14.  
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <mainClass>jjbat_000.minecraftplanetearth.Core</mainClass>
  18. <author>Justin</author>
  19. <mavan.compiler.source>1.8</mavan.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. </properties>
  22.  
  23. <repositories>
  24. <repository>
  25. <id>spigot-repo</id>
  26. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  27. </repository>
  28. <repository>
  29. <id>sk89q-repo</id>
  30. <url>http://maven.sk89q.com/repo/</url>
  31. </repository>
  32. <repository>
  33. <id>bukkit-repo</id>
  34. <url>http://repo.bukkit.org/content/groups/public/ </url>
  35. </repository>
  36. <repository>
  37. <id>elmakers-repo</id>
  38. <url>http://maven.elmakers.com/repository/ </url>
  39. </repository>
  40. <repository>
  41. <id>placeholderapi</id>
  42. <url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  43. </repository>
  44. </repositories>
  45.  
  46. <dependencies>
  47. <dependency>
  48. <groupId>org.spigotmc</groupId>
  49. <artifactId>spigot-api</artifactId>
  50. <version>1.12.2-R0.1-SNAPSHOT</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>spigot</groupId>
  55. <artifactId>server</artifactId>
  56. <version>1</version>
  57. <scope>system</scope>
  58. <systemPath>C:\Users\Justin\Desktop\DebugServer\PaperSpigot.jar</systemPath>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.sk89q.worldguard</groupId>
  62. <artifactId>worldguard-legacy</artifactId>
  63. <version>6.2</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.bukkit</groupId>
  68. <artifactId>bukkit</artifactId>
  69. <version>1.6.4-R2.0</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>de.slikey</groupId>
  74. <artifactId>EffectLib</artifactId>
  75. <version>1.4</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.mewin</groupId>
  80. <artifactId>WGRegionEventsr</artifactId>
  81. <version>1</version>
  82. <scope>system</scope>
  83. <systemPath>C:\Users\Justin\Desktop\DebugServer\plugins\WGRegionEvents.jar</systemPath>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.ksanur</groupId>
  87. <artifactId>MenuAPI</artifactId>
  88. <version>1</version>
  89. <scope>system</scope>
  90. <systemPath>C:\Users\Justin\Desktop\DebugServer\plugins\MenuAPI.jar</systemPath>
  91. </dependency>
  92. <dependency>
  93. <groupId>me.clip</groupId>
  94. <artifactId>placeholderapi</artifactId>
  95. <version>2.9.2</version>
  96. <scope>provided</scope>
  97. </dependency>
  98. </dependencies>
  99.  
  100. <build>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-compiler-plugin</artifactId>
  105. <version>3.6.1</version>
  106. <configuration>
  107. <source>1.8</source>
  108. <target>1.8</target>
  109. </configuration>
  110. </plugin>
  111. </plugins>
  112. <resources>
  113. <resource>
  114. <directory>src/main/resources</directory>
  115. <filtering>true</filtering>
  116. </resource>
  117. </resources>
  118. </build>
  119.  
  120. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement