pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>gihon.component</groupId>
  8. <artifactId>component-parent</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../</relativePath>
  11. </parent>
  12. <artifactId>component-common</artifactId>
  13. <name>component-common</name>
  14. <packaging>jar</packaging>
  15. <description>通用工具类</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>gihon.component</groupId>
  19. <artifactId>component-entity</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jsoup</groupId>
  23. <artifactId>jsoup</artifactId>
  24. </dependency>
  25. <!-- Valid 校验 -->
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-validation</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-configuration-processor</artifactId>
  41. <optional>true</optional>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.httpcomponents</groupId>
  46. <artifactId>httpclient</artifactId>
  47. </dependency>
  48. <!--commons -->
  49. <dependency>
  50. <groupId>org.apache.commons</groupId>
  51. <artifactId>commons-lang3</artifactId>
  52. </dependency>
  53. </dependencies>
  54. <build>
  55. </build>
  56. </project>