Advertisement
Guest User

Untitled

a guest
Apr 4th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. <!-- Blacksmith build file -->
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0" 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>net.apunch</groupId>
  8. <artifactId>blacksmith</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <name>Blacksmith</name>
  11. <description>Blacksmith Character for the CitizensAPI</description>
  12.  
  13. <!-- Properties -->
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <bukkit.version>1.3.2-R1.0</bukkit.version>
  17. <citizensapi.version>2.0.3-SNAPSHOT</citizensapi.version>
  18. <vault.version>1.2.18-SNAPSHOT</vault.version>
  19. <build.number>Unknown</build.number>
  20. </properties>
  21.  
  22. <!-- Repositories -->
  23. <repositories>
  24. <repository>
  25. <id>bukkit-repo</id>
  26. <url>http://repo.bukkit.org/content/groups/public/</url>
  27. </repository>
  28. <repository>
  29. <id>citizens-repo</id>
  30. <url>http://repo.citizensnpcs.com/</url>
  31. </repository>
  32. <repository>
  33. <id>vault-repo</id>
  34. <url>http://ci.herocraftonline.com/plugin/repository/everything/</url>
  35. </repository>
  36. <repository>
  37. <id>thedemgel-repo</id>
  38. <url>http://thedemgel.com:8080/jenkins/plugin/repository/everything/</url>
  39. </repository>
  40. </repositories>
  41.  
  42. <!-- Dependencies -->
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.bukkit</groupId>
  46. <artifactId>bukkit</artifactId>
  47. <version>${bukkit.version}</version>
  48. <scope>provided</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>net.citizensnpcs</groupId>
  52. <artifactId>citizensapi</artifactId>
  53. <version>${citizensapi.version}</version>
  54. <scope>provided</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>net.milkbowl.vault</groupId>
  58. <artifactId>Vault</artifactId>
  59. <version>${vault.version}</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>regalowl.hyperconomy</groupId>
  64. <artifactId>HyperConomy</artifactId>
  65. <version>0.933</version>
  66. <scope>system</scope>
  67. <systemPath>${basedir}/lib/HyperConomy.jar</systemPath>
  68. </dependency>
  69. <dependency>
  70. <groupId>me.tehbeard</groupId>
  71. <artifactId>CitiTrader</artifactId>
  72. <version>RC-5</version>
  73. <scope>provided</scope>
  74. <exclusions>
  75. <exclusion>
  76. <artifactId>Towny</artifactId>
  77. <groupId>com.palmergames</groupId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. </dependencies>
  82.  
  83. <!-- Build information -->
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>2.5.1</version>
  90. <configuration>
  91. <source>1.6</source>
  92. <target>1.6</target>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97.  
  98. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement