hutool-all-5.7.17.pom 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.7.17</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>hutool-all</artifactId>
  10. <name>${project.artifactId}</name>
  11. <description>Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。</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. <filters>
  32. <filter>
  33. <artifact>*:*</artifact>
  34. <excludes>
  35. <exclude>META-INF/maven/**</exclude>
  36. </excludes>
  37. </filter>
  38. </filters>
  39. </configuration>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. </plugins>
  44. </build>
  45. <dependencies>
  46. <dependency>
  47. <groupId>junit</groupId>
  48. <artifactId>junit</artifactId>
  49. <version>4.13.2</version>
  50. <scope>test</scope>
  51. <exclusions>
  52. <exclusion>
  53. <artifactId>hamcrest-core</artifactId>
  54. <groupId>org.hamcrest</groupId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <version>1.18.22</version>
  62. <scope>test</scope>
  63. </dependency>
  64. </dependencies>
  65. </project>