Guest User

Untitled

a guest
May 14th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>UnleashedAPI</groupId>
  4. <artifactId>UnleashedAPI</artifactId>
  5. <version>1.0</version>
  6. <properties>
  7. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  8. </properties>
  9. <build>
  10. <defaultGoal>clean package install</defaultGoal>
  11. <sourceDirectory>src/</sourceDirectory>
  12. <resources>
  13. <resource>
  14. <directory>src/</directory>
  15. <includes>
  16. <include>plugin.yml</include>
  17. </includes>
  18. </resource>
  19. </resources>
  20. <plugins>
  21. <plugin>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>3.3</version>
  24. <configuration>
  25. <source>1.7</source>
  26. <target>1.7</target>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </build>
  31.  
  32. <repositories>
  33. <repository>
  34. <id>ulmc-repo</id>
  35. <url>http://repo.ulmc.net</url>
  36. </repository>
  37. </repositories>
  38. <dependencies>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-io</artifactId>
  42. <version>1.3.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.spigotmc</groupId>
  46. <artifactId>spigot-api</artifactId>
  47. <version>1.9.4-R0.1-SNAPSHOT</version>
  48. <type>jar</type>
  49. <scope>runtime</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.bukkit</groupId>
  53. <artifactId>bukkit</artifactId>
  54. <version>1.9.4-R0.1-SNAPSHOT</version>
  55. <type>jar</type>
  56. <scope>runtime</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>mkremins</groupId>
  60. <artifactId>fanciful</artifactId>
  61. <version>0.3.3-SNAPSHOT</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.sk89q</groupId>
  65. <artifactId>worldguard</artifactId>
  66. <version>6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.bukkit</groupId>
  70. <artifactId>craftbukkit</artifactId>
  71. <version>1.9.4-R0.1-SNAPSHOT</version>
  72. <type>jar</type>
  73. <scope>runtime</scope>
  74. </dependency>
  75. </dependencies>
  76.  
  77. </project>
Add Comment
Please, Sign In to add comment