Advertisement
emphonisme

Fichier pom Spigot

Sep 22nd, 2015
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.75 KB | None | 0 0
  1. <projectxmlns="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.0http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.spigotmc</groupId>
  4. <artifactId>spigot-api</artifactId>
  5. <version>1.8-R0.1-SNAPSHOT</version>
  6. <name>Spigot-API</name>
  7. <url>http://www.spigotmc.org</url>
  8.  
  9. <properties>
  10. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  11. </properties>
  12.  
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <version>2.3.2</version>
  19. <configuration>
  20. <source>1.6</source>
  21. <target>1.6</target>
  22. </configuration>
  23. </plugin>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-shade-plugin</artifactId>
  27. <version>1.4</version>
  28. <executions>
  29. <execution>
  30. <phase>package</phase>
  31. <goals>
  32. <goal>shade</goal>
  33. </goals>
  34. </execution>
  35. </executions>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-site-plugin</artifactId>
  40. <version>3.0-beta-3</version>
  41. <configuration>
  42. <reportPlugins>
  43. <plugin>
  44. <groupId>org.codehaus.mojo</groupId>
  45. <artifactId>jxr-maven-plugin</artifactId>
  46. <version>2.0-beta-1</version>
  47. </plugin>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-javadoc-plugin</artifactId>
  51. <version>2.7</version>
  52. <configuration>
  53. <linksource>true</linksource>
  54. </configuration>
  55. <reportSets>
  56. <reportSet>
  57. <reports>
  58. <report>javadoc</report>
  59. </reports>
  60. </reportSet>
  61. </reportSets>
  62. </plugin>
  63. </reportPlugins>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. <dependencies>
  69. <dependency>
  70. <groupId>org.yaml</groupId>
  71. <artifactId>snakeyaml</artifactId>
  72. <version>1.12</version>
  73. <type>jar</type>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.googlecode.json-simple</groupId>
  78. <artifactId>json-simple</artifactId>
  79. <version>1.1.1</version>
  80. <type>jar</type>
  81. <scope>compile</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.avaje</groupId>
  85. <artifactId>ebean</artifactId>
  86. <version>2.8.1</version>
  87. <type>jar</type>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.guava</groupId>
  92. <artifactId>guava</artifactId>
  93. <version>10.0.1</version>
  94. <type>jar</type>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-lang</groupId>
  99. <artifactId>commons-lang</artifactId>
  100. <version>2.6</version>
  101. </dependency>
  102.  
  103. <!--testing-->
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. <version>4.11</version>
  108. <scope>test</scope>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.hamcrest</groupId>
  112. <artifactId>hamcrest-library</artifactId>
  113. <version>1.3</version>
  114. <scope>test</scope>
  115. </dependency>
  116. </dependencies>
  117. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement