pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>com.gmail.nossr50.mcMMO</groupId>
  4. <artifactId>mcMMO</artifactId>
  5. <version>1.2.07</version>
  6. <name>mcMMO</name>
  7. <url>https://github.com/TheYeti/mcMMO</url>
  8. <issueManagement>
  9. <system>GitHub</system>
  10. <url>https://github.com/TheYeti/mcMMO/issues</url>
  11. </issueManagement>
  12. <build>
  13. <finalName>mcMMO</finalName>
  14. <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
  15. <resources>
  16. <resource>
  17. <targetPath>.</targetPath>
  18. <filtering>true</filtering>
  19. <directory>${basedir}/src/main/resources/</directory>
  20. <includes>
  21. <include>plugin.yml</include>
  22. </includes>
  23. </resource>
  24. <resource>
  25. <targetPath>resources</targetPath>
  26. <filtering>true</filtering>
  27. <directory>${basedir}/src/main/resources/</directory>
  28. <includes>
  29. <include>*.png</include>
  30. <include>*.wav</include>
  31. </includes>
  32. </resource>
  33. </resources>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.apache.maven.plugins</groupId>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>2.3.2</version>
  39. <configuration>
  40. <source>1.6</source>
  41. <target>1.6</target>
  42. <excludes>
  43. </excludes>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <artifactId>maven-assembly-plugin</artifactId>
  48. <configuration>
  49. <descriptors>
  50. <descriptor>src/main/assembly/package.xml</descriptor>
  51. </descriptors>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <id>build</id>
  56. <phase>package</phase>
  57. <goals>
  58. <goal>single</goal>
  59. </goals>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <dependencies>
  66. <dependency>
  67. <groupId>org.bukkit</groupId>
  68. <artifactId>bukkit</artifactId>
  69. <version>1.0.1-R2-SNAPSHOT</version>
  70. <type>jar</type>
  71. <scope>compile</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.bukkit</groupId>
  75. <artifactId>craftbukkit</artifactId>
  76. <version>1.0.1-R2-SNAPSHOT</version>
  77. <type>jar</type>
  78. <scope>compile</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.nijikokun.bukkit</groupId>
  82. <artifactId>Permissions</artifactId>
  83. <version>3.2</version>
  84. <type>jar</type>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>ru.tehkode</groupId>
  89. <artifactId>PermissionsEx</artifactId>
  90. <version>1.18</version>
  91. <type>jar</type>
  92. <scope>compile</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.getspout</groupId>
  96. <artifactId>spoutplugin</artifactId>
  97. <version>dev-SNAPSHOT</version>
  98. <type>jar</type>
  99. <scope>compile</scope>
  100. </dependency>
  101. </dependencies>
  102. <properties>
  103. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  104. </properties>
  105. </project>