Slind

Untitled

Feb 3rd, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 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>snapshot-repo</id>
  22. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  23. </repository>
  24. </repositories>
  25. <build>
  26. <finalName>BanManager</finalName>
  27. <sourceDirectory>${basedir}/src</sourceDirectory>
  28. <resources>
  29. <resource>
  30. <targetPath>.</targetPath>
  31. <filtering>true</filtering>
  32. <directory>${basedir}</directory>
  33. <includes>
  34. <include>*.yml</include>
  35. </includes>
  36. </resource>
  37. </resources>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>2.3.2</version>
  43. <configuration>
  44. <source>1.6</source>
  45. <target>1.6</target>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-shade-plugin</artifactId>
  51. <version>1.5</version>
  52. <executions>
  53. <execution>
  54. <phase>package</phase>
  55. <goals>
  56. <goal>shade</goal>
  57. </goals>
  58. <configuration>
  59. <relocations>
  60. <relocation>
  61. <pattern>net.gravitydevelopment.updater</pattern>
  62. <shadedPattern>me.confuser.banmanager.updater</shadedPattern>
  63. </relocation>
  64. </relocations>
  65. </configuration>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. <extensions>
  71. <extension>
  72. <groupId>org.apache.maven.wagon</groupId>
  73. <artifactId>wagon-file</artifactId>
  74. <version>2.2</version>
  75. </extension>
  76. </extensions>
  77. </build>
  78. <dependencies>
  79. <dependency>
  80. <groupId>org.bukkit</groupId>
  81. <artifactId>bukkit</artifactId>
  82. <version>LATEST</version>
  83. <type>jar</type>
  84. <scope>provided</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>net.md-5</groupId>
  88. <artifactId>bungeecord-api</artifactId>
  89. <version>1.5-SNAPSHOT</version>
  90. <type>jar</type>
  91. </dependency>
  92. <dependency>
  93. <groupId>net.gravitydevelopment.updater</groupId>
  94. <artifactId>updater</artifactId>
  95. <version>2.1</version>
  96. </dependency>
  97. </dependencies>
  98. <properties>
  99. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  100. </properties>
  101. </project>
Advertisement
Add Comment
Please, Sign In to add comment