Guest User

Untitled

a guest
Jul 22nd, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 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>com.twins</groupId>
  7. <artifactId>twins-core</artifactId>
  8. <version>1.0.0</version>
  9.  
  10. <properties>
  11. <maven.compiler.source>22</maven.compiler.source>
  12. <maven.compiler.target>22</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <repositories>
  17. <repository>
  18. <id>jitpack.io</id>
  19. <url>https://jitpack.io</url>
  20. </repository>
  21. <repository>
  22. <id>oss.sonatype.org-snapshots</id>
  23. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  24. </repository>
  25. <repository>
  26. <id>codemc-releases</id>
  27. <url>https://repo.codemc.io/repository/maven-releases/</url>
  28. </repository>
  29. <repository>
  30. <id>nickuc-repo</id>
  31. <url>https://repo.nickuc.com/maven-releases/</url>
  32. </repository>
  33. </repositories>
  34.  
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.spigotmc</groupId>
  38. <artifactId>spigot</artifactId>
  39. <version>1.8.8-R0.1-SNAPSHOT</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <version>1.18.32</version>
  46. <scope>provided</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>me.devnatan</groupId>
  50. <artifactId>inventory-framework-platform-bukkit</artifactId>
  51. <version>3.0.8</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.nickuc.chat</groupId>
  55. <artifactId>nchat-api</artifactId>
  56. <version>5.6</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.retrooper</groupId>
  61. <artifactId>packetevents-spigot</artifactId>
  62. <version>2.4.0</version>
  63. <systemPath>${project.basedir}/libs/packetevents-spigot-2.4.0.jar</systemPath>
  64. <scope>system</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.minecraftsolutions</groupId>
  68. <artifactId>minecraftsolutions</artifactId>
  69. <version>1.0</version>
  70. <systemPath>${project.basedir}/libs/MinecraftSolutions-1.0-all.jar</systemPath>
  71. <scope>system</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.worldedit</groupId>
  75. <artifactId>worldedit</artifactId>
  76. <version>1.0</version>
  77. <systemPath>${project.basedir}/libs/WorldEdit.jar</systemPath>
  78. <scope>system</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.worldguard</groupId>
  82. <artifactId>worldguard</artifactId>
  83. <version>1.0</version>
  84. <systemPath>${project.basedir}/libs/WorldGuard.jar</systemPath>
  85. <scope>system</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>swornguns</groupId>
  89. <artifactId>swornguns</artifactId>
  90. <version>1.0</version>
  91. <systemPath>${project.basedir}/libs/SwornGuns-1.0.0.jar</systemPath>
  92. <scope>system</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>znpcs</groupId>
  96. <artifactId>znpcs</artifactId>
  97. <version>1.0</version>
  98. <systemPath>${project.basedir}/libs/znpcs-4.3.jar</systemPath>
  99. <scope>system</scope>
  100. </dependency>
  101. </dependencies>
  102.  
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.apache.maven.plugins</groupId>
  107. <artifactId>maven-compiler-plugin</artifactId>
  108. <version>3.8.1</version>
  109. <configuration>
  110. <source>22</source>
  111. <target>22</target>
  112. </configuration>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-shade-plugin</artifactId>
  117. <version>3.2.4</version>
  118. <executions>
  119. <execution>
  120. <phase>package</phase>
  121. <goals>
  122. <goal>shade</goal>
  123. </goals>
  124. <configuration>
  125. <createDependencyReducedPom>false</createDependencyReducedPom>
  126. </configuration>
  127. </execution>
  128. </executions>
  129. </plugin>
  130. </plugins>
  131. <resources>
  132. <resource>
  133. <directory>src/main/resources</directory>
  134. <filtering>true</filtering>
  135. </resource>
  136. </resources>
  137. </build>
  138.  
  139. </project>
  140.  
Advertisement
Add Comment
Please, Sign In to add comment