Kloudy

Untitled

Jun 18th, 2016
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 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>com.antarescraft.kloudy.concertpartyeffects</groupId>
  4. <artifactId>ConcertPartyEffects</artifactId>
  5. <version>1.0</version>
  6.  
  7. <repositories>
  8. <repository>
  9. <id>spigot-repo</id>
  10. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  11. </repository>
  12. <repository>
  13. <id>ProtocolLib</id>
  14. <url>http://repo.dmulloy2.net/content/groups/public/</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <!--Spigot API-->
  19. <dependency>
  20. <groupId>org.spigotmc</groupId>
  21. <artifactId>spigot-api</artifactId>
  22. <version>1.9.2-R0.1-SNAPSHOT</version>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.comphenix.protocol</groupId>
  27. <artifactId>ProtocolLib-API</artifactId>
  28. <version>4.0-SNAPSHOT</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.antarescraft.kloudy.coreutils</groupId>
  33. <artifactId>KloudyCorePluginUtils-1.0</artifactId>
  34. <version>1.0</version>
  35. <scope>system</scope>
  36. <systemPath>${project.basedir}/resources/KloudyCorePluginUtils-1.0.jar</systemPath>
  37. </dependency>
  38. </dependencies>
  39. <build>
  40. <sourceDirectory>src</sourceDirectory>
  41. <plugins>
  42. <plugin>
  43. <artifactId>maven-compiler-plugin</artifactId>
  44. <version>3.3</version>
  45. <configuration>
  46. <source>1.7</source>
  47. <target>1.7</target>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-jar-plugin</artifactId>
  53. <version>2.3.1</version>
  54. <configuration>
  55. <outputDirectory>D:\Tim\Spigot 1.10 Server\plugins</outputDirectory>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-assembly-plugin</artifactId>
  60. <executions>
  61. <execution>
  62. <phase>package</phase>
  63. <goals>
  64. <goal>single</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. <configuration>
  69. <descriptorRefs>
  70. <descriptorRef>jar-with-dependencies</descriptorRef>
  71. </descriptorRefs>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. <resources>
  76. <resource>
  77. <directory>resources</directory>
  78. <includes>
  79. <include>plugin.yml</include>
  80. <include>config.yml</include>
  81. </includes>
  82. </resource>
  83. </resources>
  84. </build>
  85. </project>
Advertisement
Add Comment
Please, Sign In to add comment