Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 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. <parent>
  6. <artifactId>MegaWalls</artifactId>
  7. <groupId>net.hypixel</groupId>
  8. <version>RELEASE-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11.  
  12. <artifactId>MegaWallsGame</artifactId>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <build.number>Unknown</build.number>
  17. </properties>
  18.  
  19. <repositories>
  20. <repository>
  21. <id>deployment</id>
  22. <url>http://dev.hypixel.net:8081/nexus/content/repositories/Hypixel/</url>
  23. </repository>
  24. <repository>
  25. <id>kitteh-repo</id>
  26. <url>http://repo.kitteh.org/content/groups/public</url>
  27. </repository>
  28. <repository>
  29. <id>bukkit-repo</id>
  30. <url>http://repo.bukkit.org/content/groups/public/</url>
  31. </repository>
  32. <repository>
  33. <id>md_5</id>
  34. <url>http://repo.md-5.net/content/groups/public/</url>
  35. </repository>
  36. <repository>
  37. <id>comphenix</id>
  38. <url>http://repo.comphenix.net/content/repositories/snapshots/</url>
  39. </repository>
  40. </repositories>
  41. <distributionManagement>
  42. <snapshotRepository>
  43. <id>deployment</id>
  44. <name>Internal Releases</name>
  45. <url>http://dev.hypixel.net:8081/nexus/content/repositories/Hypixel/</url>
  46. </snapshotRepository>
  47. <repository>
  48. <id>deployment</id>
  49. <name>Internal Releases</name>
  50. <url>http://dev.hypixel.net:8081/nexus/content/repositories/Hypixel/</url>
  51. </repository>
  52. </distributionManagement>
  53.  
  54. <dependencies>
  55. <dependency>
  56. <groupId>net.hypixel</groupId>
  57. <artifactId>spigot-api</artifactId>
  58. <version>1.7.10-R0.1-SNAPSHOT</version>
  59. <type>jar</type>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.hypixel</groupId>
  64. <artifactId>spigot</artifactId>
  65. <version>1.7.10-R0.1-SNAPSHOT</version>
  66. <type>jar</type>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>net.hypixel</groupId>
  71. <artifactId>GameManager</artifactId>
  72. <version>RELEASE-SNAPSHOT</version>
  73. <type>jar</type>
  74. <scope>provided</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>fr.neatmonster</groupId>
  78. <artifactId>ncpcore</artifactId>
  79. <version>static</version>
  80. <type>jar</type>
  81. <scope>provided</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.hypixel</groupId>
  85. <artifactId>LibsDisguises</artifactId>
  86. <version>1.0-SNAPSHOT</version>
  87. <type>jar</type>
  88. <scope>provided</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>net.citizensnpcs</groupId>
  92. <artifactId>citizensapi</artifactId>
  93. <version>2.0.12-SNAPSHOT</version>
  94. <type>jar</type>
  95. <scope>provided</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>net.hypixel</groupId>
  99. <artifactId>MegaWallsCommons</artifactId>
  100. <version>RELEASE-SNAPSHOT</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.comphenix.protocol</groupId>
  104. <artifactId>ProtocolLib</artifactId>
  105. <version>3.5.0-SNAPSHOT</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. </dependencies>
  109.  
  110. <build>
  111. <finalName>MegaWallsGame</finalName>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-compiler-plugin</artifactId>
  116. <version>2.3.2</version>
  117. <configuration>
  118. <source>1.7</source>
  119. <target>1.7</target>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-shade-plugin</artifactId>
  125. <version>2.2</version>
  126. <executions>
  127. <execution>
  128. <phase>package</phase>
  129. <goals>
  130. <goal>shade</goal>
  131. </goals>
  132. </execution>
  133. </executions>
  134. </plugin>
  135. </plugins>
  136. </build>
  137.  
  138.  
  139. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement