pom.xml 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>atlas-parent</artifactId>
  5. <groupId>cc.funkemunky.utils</groupId>
  6. <version>1.11.5</version>
  7. <relativePath>../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>AtlasVelocity</artifactId>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <repositories>
  15. <repository>
  16. <id>velocity</id>
  17. <url>https://nexus.velocitypowered.com/repository/maven-public/</url>
  18. </repository>
  19. </repositories>
  20. <distributionManagement>
  21. <snapshotRepository>
  22. <id>funkemunky-snapshots</id>
  23. <url>https://nexus.funkemunky.cc/content/repositories/snapshots/</url>
  24. </snapshotRepository>
  25. <repository>
  26. <id>funkemunky-releases</id>
  27. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  28. </repository>
  29. </distributionManagement>
  30. <dependencies>
  31. <dependency>
  32. <groupId>com.velocitypowered</groupId>
  33. <artifactId>velocity-api</artifactId>
  34. <version>3.0.0</version>
  35. <scope>provided</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.8.1</version>
  44. <configuration>
  45. <source>8</source>
  46. <target>8</target>
  47. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  48. <annotationProcessorPaths>
  49. <path>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <version>1.18.20</version>
  53. </path>
  54. </annotationProcessorPaths>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <groupId>org.apache.maven.plugins</groupId>
  59. <artifactId>maven-shade-plugin</artifactId>
  60. <version>3.1.0</version>
  61. <executions>
  62. <execution>
  63. <phase>package</phase>
  64. <goals>
  65. <goal>shade</goal>
  66. </goals>
  67. <configuration>
  68. <minimizeJar>false</minimizeJar>
  69. </configuration>
  70. </execution>
  71. </executions>
  72. </plugin>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-deploy-plugin</artifactId>
  76. <version>2.8.1</version>
  77. <configuration>
  78. <skip>true</skip>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. <resources>
  83. <resource>
  84. <directory>src/main/resources</directory>
  85. <filtering>true</filtering>
  86. </resource>
  87. </resources>
  88. </build>
  89. </project>