hutool-all-4.0.9.pom 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>4.0.9</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>hutool-all</artifactId>
  10. <name>${project.artifactId}</name>
  11. <description>提供丰富的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.0.0</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.12</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. </dependencies>
  51. </project>