Ulfric

Untitled

May 11th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. 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>com.ulfric</groupId>
  8. <artifactId>parent</artifactId>
  9. <version>2.0-SNAPSHOT</version>
  10. <packaging>pom</packaging>
  11.  
  12. <modules>
  13. <module>Lib</module>
  14. <module>LibExample</module>
  15. </modules>
  16.  
  17. <build>
  18. <defaultGoal>clean install</defaultGoal>
  19. <finalName>${project.artifactId}</finalName>
  20.  
  21. <resources>
  22. <resource>
  23. <targetPath>.</targetPath>
  24. <filtering>true</filtering>
  25. <directory>${basedir}/src/main/resources/</directory>
  26. <includes>
  27. <include>*.yml</include>
  28. </includes>
  29. </resource>
  30. </resources>
  31.  
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.3</version>
  36. <configuration>
  37. <source>1.8</source>
  38. <target>1.8</target>
  39. <optimize>true</optimize>
  40. </configuration>
  41. </plugin>
  42.  
  43. </plugins>
  44. </build>
  45.  
  46. <properties>
  47. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  48.  
  49. <project.author>Packet</project.author>
  50. <project.website>http://ulfric.com</project.website>
  51. <paperspigot.version>1.8.8-R0.1-SNAPSHOT</paperspigot.version>
  52. </properties>
  53.  
  54. <dependencies>
  55. <dependency>
  56. <groupId>org.github.paperspigot</groupId>
  57. <artifactId>paperspigot</artifactId>
  58. <version>${paperspigot.version}</version>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.github.paperspigot</groupId>
  63. <artifactId>paperspigot-api</artifactId>
  64. <version>${paperspigot.version}</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. <!-- testing -->
  68. <dependency>
  69. <groupId>junit</groupId>
  70. <artifactId>junit</artifactId>
  71. <version>4.12</version>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.hamcrest</groupId>
  76. <artifactId>java-hamcrest</artifactId>
  77. <version>2.0.0.0</version>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.annotation</groupId>
  82. <artifactId>javax.annotation-api</artifactId>
  83. <version>1.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-collections4</artifactId>
  88. <version>4.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.guava</groupId>
  92. <artifactId>guava</artifactId>
  93. <version>19.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-lang3</artifactId>
  98. <version>3.4</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-codec</groupId>
  102. <artifactId>commons-codec</artifactId>
  103. <version>1.10</version>
  104. </dependency>
  105. </dependencies>
  106.  
  107. </project>
Advertisement
Add Comment
Please, Sign In to add comment