Guest User

Untitled

a guest
Feb 22nd, 2023
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 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>me.outspending</groupId>
  8. <artifactId>papertesting</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>pom</packaging>
  11.  
  12. <name>Papertesting</name>
  13. <modules>
  14. <module>API</module>
  15. </modules>
  16.  
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. </properties>
  21.  
  22. <build>
  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. <minimizeJar>true</minimizeJar>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. <resources>
  52. <resource>
  53. <directory>src/main/resources</directory>
  54. <filtering>true</filtering>
  55. </resource>
  56. </resources>
  57. </build>
  58.  
  59. <repositories>
  60. <repository>
  61. <id>papermc-repo</id>
  62. <url>https://repo.papermc.io/repository/maven-public/</url>
  63. </repository>
  64. <repository>
  65. <id>sonatype</id>
  66. <url>https://oss.sonatype.org/content/groups/public/</url>
  67. </repository>
  68. </repositories>
  69.  
  70. <dependencies>
  71. <dependency>
  72. <groupId>io.papermc.paper</groupId>
  73. <artifactId>paper-api</artifactId>
  74. <version>1.17-R0.1-SNAPSHOT</version>
  75. <scope>provided</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>me.outspending</groupId>
  79. <artifactId>API</artifactId>
  80. <version>1.0.0</version>
  81. </dependency>
  82. </dependencies>
  83. </project>
  84.  
Advertisement
Add Comment
Please, Sign In to add comment