Advertisement
Guest User

Untitled

a guest
Sep 10th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 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. <groupId>games.hestia.core</groupId>
  6. <artifactId>core</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8.  
  9. <repositories>
  10. <repository>
  11. <id>spigot-repo</id>
  12. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  13. </repository>
  14. <!--Bungeecord Repo -->
  15. <!--Only include if using the Spigot API dependency -->
  16. <repository>
  17. <id>bungeecord-repo</id>
  18. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  19. </repository>
  20.  
  21. <repository>
  22. <id>jitpack.io</id>
  23. <url>https://jitpack.io</url>
  24. </repository>
  25. </repositories>
  26.  
  27. <dependencies>
  28.  
  29. <dependency>
  30. <groupId>fr.minuskube.inv</groupId>
  31. <artifactId>smart-invs</artifactId>
  32. <version>1.2.7</version>
  33. </dependency>
  34.  
  35. <dependency>
  36. <groupId>com.github.JavaFactoryDev</groupId>
  37. <artifactId>LightningStorage</artifactId>
  38. <version>2.4</version>
  39. </dependency>
  40.  
  41. <dependency>
  42. <groupId>org.spigotmc</groupId>
  43. <artifactId>spigot-api</artifactId>
  44. <version>1.8.8-R0.1-SNAPSHOT</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. </dependencies>
  48.  
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-shade-plugin</artifactId>
  54. <version>3.1.0</version>
  55. <executions>
  56. <execution>
  57. <phase>package</phase>
  58. <goals>
  59. <goal>shade</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. <configuration>
  64. <createDependencyReducedPom>false</createDependencyReducedPom>
  65. <relocations>
  66. <relocation>
  67. <pattern>de.leonhard</pattern>
  68. <shadedPattern>games.hestia.core</shadedPattern>
  69. </relocation>
  70. </relocations>
  71. </configuration>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement