Guest User

pom

a guest
Mar 20th, 2022
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 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>cz.waterchick</groupId>
  8. <artifactId>CReward</artifactId>
  9. <version>1.0</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>CReward</name>
  13.  
  14. <description>Light daily reward plugin</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19.  
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.8.1</version>
  26. <configuration>
  27. <source>${java.version}</source>
  28. <target>${java.version}</target>
  29. </configuration>
  30. </plugin>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-shade-plugin</artifactId>
  34. <version>3.2.4</version>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. <configuration>
  42. <createDependencyReducedPom>false</createDependencyReducedPom>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. <resources>
  49. <resource>
  50. <directory>src/main/resources</directory>
  51. <filtering>true</filtering>
  52. </resource>
  53. </resources>
  54. </build>
  55.  
  56. <repositories>
  57. <repository>
  58. <id>placeholderapi</id>
  59. <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
  60. </repository>
  61. <repository>
  62. <id>spigotmc-repo</id>
  63. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  64. </repository>
  65. <repository>
  66. <id>sonatype</id>
  67. <url>https://oss.sonatype.org/content/groups/public/</url>
  68. </repository>
  69. </repositories>
  70.  
  71. <dependencies>
  72. <dependency>
  73. <groupId>org.spigotmc</groupId>
  74. <artifactId>spigot-api</artifactId>
  75. <version>1.8.8-R0.1-SNAPSHOT</version>
  76. <scope>provided</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>me.clip</groupId>
  80. <artifactId>placeholderapi</artifactId>
  81. <version>2.11.1</version>
  82. <scope>provided</scope>
  83. </dependency>
  84. </dependencies>
  85. </project>
  86.  
Advertisement
Add Comment
Please, Sign In to add comment