hutool-all-5.3.1.pom 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>hutool-parent</artifactId>
  5. <groupId>cn.hutool</groupId>
  6. <version>5.3.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>hutool-all</artifactId>
  10. <name>${project.artifactId}</name>
  11. <description>提供丰富的Java工具方法,此模块为Hutool所有模块的打包汇总,最终形式为一个jar包</description>
  12. <url>https://github.com/looly/hutool</url>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <artifactId>maven-shade-plugin</artifactId>
  17. <version>3.2.1</version>
  18. <executions>
  19. <execution>
  20. <phase>package</phase>
  21. <goals>
  22. <goal>shade</goal>
  23. </goals>
  24. <configuration>
  25. <createSourcesJar>true</createSourcesJar>
  26. <artifactSet>
  27. <includes>
  28. <include>${project.groupId}:*:*</include>
  29. </includes>
  30. </artifactSet>
  31. </configuration>
  32. </execution>
  33. </executions>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <dependencies>
  38. <dependency>
  39. <groupId>junit</groupId>
  40. <artifactId>junit</artifactId>
  41. <version>4.13</version>
  42. <scope>test</scope>
  43. <exclusions>
  44. <exclusion>
  45. <artifactId>hamcrest-core</artifactId>
  46. <groupId>org.hamcrest</groupId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <version>1.18.12</version>
  54. <scope>test</scope>
  55. </dependency>
  56. </dependencies>
  57. </project>