TheCalypso

Waterfall plugin .pom

Apr 17th, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 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>fr.hotmail.regisgaia</groupId>
  8. <artifactId>GProxy</artifactId>
  9. <version>1.9.1</version>
  10.  
  11. <properties>
  12. <java.version>17</java.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15.  
  16. <build>
  17. <resources>
  18. <resource>
  19. <directory>src/main/resources</directory>
  20. <filtering>true</filtering> <!-- remplace ${project.version} in plugin.yml par la version de ce fichier -->
  21. </resource>
  22. </resources>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.apache.maven.plugins</groupId>
  26. <artifactId>maven-compiler-plugin</artifactId>
  27. <version>3.8.1</version>
  28. <configuration>
  29. <source>${java.version}</source>
  30. <target>${java.version}</target>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-shade-plugin</artifactId>
  36. <version>3.2.4</version>
  37. <executions>
  38. <execution>
  39. <phase>package</phase>
  40. <goals>
  41. <goal>shade</goal>
  42. </goals>
  43. <configuration>
  44. <createDependencyReducedPom>false</createDependencyReducedPom>
  45. </configuration>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51.  
  52. <repositories>
  53. <repository>
  54. <id>papermc</id>
  55. <url>https://papermc.io/repo/repository/maven-public/</url>
  56. </repository>
  57. </repositories>
  58.  
  59. <dependencies>
  60. <dependency>
  61. <groupId>io.github.waterfallmc</groupId>
  62. <artifactId>waterfall-api</artifactId>
  63. <version>1.20-R0.2-SNAPSHOT</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <version>1.18.28</version>
  70. <scope>provided</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.auth0</groupId>
  74. <artifactId>java-jwt</artifactId>
  75. <version>4.4.0</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. </dependencies>
  79. </project>
Advertisement
Add Comment
Please, Sign In to add comment