Guest User

Untitled

a guest
Dec 23rd, 2021
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 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>com.gmail.kylanjaeger</groupId>
  8. <artifactId>ResourceRegen</artifactId>
  9. <version>0.1-ALPHA</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>ResourceRegen</name>
  13.  
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. </properties>
  18.  
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <version>3.8.1</version>
  25. <configuration>
  26. <source>${java.version}</source>
  27. <target>${java.version}</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-shade-plugin</artifactId>
  33. <version>3.2.4</version>
  34. <executions>
  35. <execution>
  36. <phase>package</phase>
  37. <goals>
  38. <goal>shade</goal>
  39. </goals>
  40. <configuration>
  41. <createDependencyReducedPom>false</createDependencyReducedPom>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. <resources>
  48. <resource>
  49. <directory>src/main/resources</directory>
  50. <filtering>true</filtering>
  51. </resource>
  52. </resources>
  53. </build>
  54.  
  55. <repositories>
  56. <repository>
  57. <id>papermc-repo</id>
  58. <url>https://papermc.io/repo/repository/maven-public/</url>
  59. </repository>
  60. <repository>
  61. <id>sonatype</id>
  62. <url>https://oss.sonatype.org/content/groups/public/</url>
  63. </repository>
  64. <repository>
  65. <id>sk89q-repo</id>
  66. <url>https://maven.enginehub.org/repo/</url>
  67. </repository>
  68. <repository>
  69. <id>enginehub-maven</id>
  70. <url>https://maven.enginehub.org/repo/</url>
  71. </repository>
  72.  
  73. </repositories>
  74.  
  75. <dependencies>
  76. <dependency>
  77. <groupId>io.papermc.paper</groupId>
  78. <artifactId>paper-api</artifactId>
  79. <version>1.17.1-R0.1-SNAPSHOT</version>
  80. <scope>provided</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.sk89q.worldguard</groupId>
  84. <artifactId>worldguard-bukkit</artifactId>
  85. <version>7.0.6</version>
  86. <scope>provided</scope>https://pastebin.com/
  87. </dependency>
  88. <dependency>
  89. <groupId>com.sk89q.worldedit</groupId>
  90. <artifactId>worldedit-bukkit</artifactId>
  91. <version>7.2.8</version>
  92. <scope>provided</scope>
  93. </dependency>
  94. </dependencies>
  95. </project>
Advertisement
Add Comment
Please, Sign In to add comment