Guest User

Untitled

a guest
Oct 7th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 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>me.danilkp1234</groupId>
  8. <artifactId>aquask</artifactId>
  9. <version>1.0.0</version>
  10. <build>
  11. <sourceDirectory>src/main/java</sourceDirectory>
  12. <defaultGoal>clean package</defaultGoal>
  13. <resources>
  14. <resource>
  15. <directory>src/main/resources</directory>
  16. <!-- Keeping filtering at true here reduces plugin.yml redundancy! -->
  17. <filtering>true</filtering>
  18. <includes>
  19. <include>plugin.yml</include>
  20. </includes>
  21. </resource>
  22. <resource>
  23. <directory>src/main/resources</directory>
  24. <!-- Keep filtering at false for other resources to prevent bad magic -->
  25. <filtering>false</filtering>
  26. <excludes>
  27. <exclude>**/*.java</exclude>
  28. <exclude>plugin.yml</exclude>
  29. </excludes>
  30. </resource>
  31. </resources>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-shade-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <phase>package</phase>
  39. <goals>
  40. <goal>shade</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. <configuration>
  45. <finalName>AquaSK</finalName>
  46. </configuration>
  47. </plugin>
  48. <plugin>
  49. <artifactId>maven-compiler-plugin</artifactId>
  50. <version>3.1</version>
  51. <configuration>
  52. <source>1.7</source>
  53. <target>1.7</target>
  54. <encoding>UTF-8</encoding>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. <repositories>
  60. <repository>
  61. <id>spigot-repo</id>
  62. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  63. </repository>
  64. <repository>
  65. <id>lib</id>
  66. <url>file://${project.basedir}/lib</url>
  67. </repository>
  68. <repository>
  69. <id>njol-repo</id>
  70. <url>https://raw.githubusercontent.com/bensku/mvn-repo/master/</url>
  71. </repository>
  72. </repositories>
  73. <dependencies>
  74. <!--Spigot API-->
  75. <dependency>
  76. <groupId>org.spigotmc</groupId>
  77. <artifactId>spigot-api</artifactId>
  78. <version>1.8.8-R0.1-SNAPSHOT</version>
  79. </dependency>
  80. <!--Bukkit API-->
  81. <dependency>
  82. <groupId>org.bukkit</groupId>
  83. <artifactId>bukkit</artifactId>
  84. <version>1.8.8-R0.1-SNAPSHOT</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.google.cloud</groupId>
  88. <artifactId>google-cloud-translate</artifactId>
  89. <version>1.4.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.cloud</groupId>
  93. <artifactId>google-cloud</artifactId>
  94. <version>0.24.0-alpha</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>ch.njol</groupId>
  98. <artifactId>skript</artifactId>
  99. <version>1.0</version>
  100. <scope>system</scope>
  101. <systemPath>${project.basedir}/lib/Skript.jar</systemPath>
  102. </dependency>
  103. </dependencies>
  104. <properties>
  105. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  106. </properties>
  107. </project>
Advertisement
Add Comment
Please, Sign In to add comment