Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5.  
  6. <groupId>me.morsik.hub</groupId>
  7. <artifactId>Hub</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10.  
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <mainClass>me.morsik.hub.Hub</mainClass>
  14. <author>Morsik</author>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. </properties>
  18.  
  19. <repositories>
  20. <repository>
  21. <id>spigot-repo</id>
  22. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  23. </repository>
  24. <repository>
  25. <id>jitpack.io</id>
  26. <url>https://jitpack.io</url>
  27. </repository>
  28. <repository>
  29. <id>vault-repo</id>
  30. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  31. </repository>
  32. </repositories>
  33.  
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.spigotmc</groupId>
  37. <artifactId>spigot-api</artifactId>
  38. <version>1.8.8-R0.1-SNAPSHOT</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.kangarko</groupId>
  43. <artifactId>Designer</artifactId>
  44. <version>3.0.2</version> <!-- change to the latest version -->
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>net.milkbowl.vault</groupId>
  49. <artifactId>VaultAPI</artifactId>
  50. <version>1.7</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. <version>1.18.4</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. </dependencies>
  60.  
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-shade-plugin</artifactId>
  66. <version>3.1.1</version>
  67. <executions>
  68. <execution>
  69. <phase>package</phase>
  70. <goals>
  71. <goal>shade</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. <configuration>
  76. <createDependencyReducedPom>false</createDependencyReducedPom>
  77. <relocations>
  78. <relocation>
  79. <pattern>org.mineacademy.designer</pattern>
  80. <shadedPattern>${project.groupId}.designer</shadedPattern>
  81. </relocation>
  82. </relocations>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. <resources>
  87. <resource>
  88. <directory>src/main/resources</directory>
  89. <filtering>true</filtering>
  90. </resource>
  91. </resources>
  92. </build>
  93. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement