Slind

Untitled

Feb 3rd, 2014
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>BanManager</groupId>
  5. <artifactId>BanManager</artifactId>
  6. <version>4.0</version>
  7. <repositories>
  8. <repository>
  9. <id>bukkit-repo</id>
  10. <url>http://repo.bukkit.org/content/groups/public</url>
  11. </repository>
  12. <repository>
  13. <id>gravity-repo</id>
  14. <url>http://repo.gravitydevelopment.net</url>
  15. </repository>
  16. <repository>
  17. <id>craftminecraft-dev</id>
  18. <url>http://repo.craftminecraft.net/content/groups/public/</url>
  19. </repository>
  20. <repository>
  21. <id>cubespace</id>
  22. <url>http://nexus.cube-space.net/content/groups/public/</url>
  23. <snapshots>
  24. <enabled>true</enabled>
  25. </snapshots>
  26. </repository>
  27. </repositories>
  28. <build>
  29. <finalName>BanManager</finalName>
  30. <sourceDirectory>${basedir}/src</sourceDirectory>
  31. <resources>
  32. <resource>
  33. <targetPath>.</targetPath>
  34. <filtering>true</filtering>
  35. <directory>${basedir}</directory>
  36. <includes>
  37. <include>*.yml</include>
  38. </includes>
  39. </resource>
  40. </resources>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.apache.maven.plugins</groupId>
  44. <artifactId>maven-compiler-plugin</artifactId>
  45. <version>2.3.2</version>
  46. <configuration>
  47. <source>1.6</source>
  48. <target>1.6</target>
  49. </configuration>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-shade-plugin</artifactId>
  54. <version>1.5</version>
  55. <executions>
  56. <execution>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>shade</goal>
  60. </goals>
  61. <configuration>
  62. <relocations>
  63. <relocation>
  64. <pattern>net.gravitydevelopment.updater</pattern>
  65. <shadedPattern>me.confuser.banmanager.updater</shadedPattern>
  66. </relocation>
  67. </relocations>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. <extensions>
  74. <extension>
  75. <groupId>org.apache.maven.wagon</groupId>
  76. <artifactId>wagon-file</artifactId>
  77. <version>2.2</version>
  78. </extension>
  79. </extensions>
  80. </build>
  81. <dependencies>
  82. <dependency>
  83. <groupId>org.bukkit</groupId>
  84. <artifactId>bukkit</artifactId>
  85. <version>LATEST</version>
  86. <type>jar</type>
  87. <scope>provided</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>net.md-5</groupId>
  91. <artifactId>bungeecord-parent</artifactId>
  92. <version>1.7.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>net.gravitydevelopment.updater</groupId>
  96. <artifactId>updater</artifactId>
  97. <version>2.1</version>
  98. </dependency>
  99. </dependencies>
  100. <properties>
  101. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  102. </properties>
  103. </project>
Advertisement
Add Comment
Please, Sign In to add comment