pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yihu.hos</groupId>
  8. <artifactId>hos-parent</artifactId>
  9. <version>1.3.0</version>
  10. <relativePath>../hos-parent</relativePath>
  11. </parent>
  12. <artifactId>hos-core</artifactId>
  13. <version>1.3.0</version>
  14. <packaging>jar</packaging>
  15. <name>hos-core</name>
  16. <description>ESB通用组件</description>
  17. <dependencies>
  18. <!--zip start-->
  19. <dependency>
  20. <groupId>net.lingala.zip4j</groupId>
  21. <artifactId>zip4j</artifactId>
  22. </dependency>
  23. <!--zip end-->
  24. <!--commons start-->
  25. <dependency>
  26. <groupId>org.apache.commons</groupId>
  27. <artifactId>commons-collections4</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>commons-fileupload</groupId>
  31. <artifactId>commons-fileupload</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.commons</groupId>
  35. <artifactId>commons-lang3</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-net</groupId>
  39. <artifactId>commons-net</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-beanutils</groupId>
  43. <artifactId>commons-beanutils</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>commons-codec</groupId>
  47. <artifactId>commons-codec</artifactId>
  48. </dependency>
  49. <!--commons end-->
  50. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  51. <dependency>
  52. <groupId>com.squareup.okhttp3</groupId>
  53. <artifactId>okhttp</artifactId>
  54. </dependency>
  55. <!--pinyin4j start-->
  56. <dependency>
  57. <groupId>com.belerweb</groupId>
  58. <artifactId>pinyin4j</artifactId>
  59. </dependency>
  60. <!--pinyin4j end-->
  61. <!--jackson start-->
  62. <dependency>
  63. <groupId>com.fasterxml.jackson.core</groupId>
  64. <artifactId>jackson-core</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.fasterxml.jackson.core</groupId>
  68. <artifactId>jackson-databind</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.fasterxml.jackson.dataformat</groupId>
  72. <artifactId>jackson-dataformat-xml</artifactId>
  73. </dependency>
  74. <!--jackson end-->
  75. <!--=============httpclient start=============-->
  76. <dependency>
  77. <groupId>org.apache.httpcomponents</groupId>
  78. <artifactId>httpclient</artifactId>
  79. <!--<version>4.5.1</version>-->
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.httpcomponents</groupId>
  83. <artifactId>httpmime</artifactId>
  84. <!--<version>4.5.1</version>-->
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.httpcomponents</groupId>
  88. <artifactId>httpcore</artifactId>
  89. <!--<version>4.4.3</version>-->
  90. </dependency>
  91. <!--=============httpclient end=============-->
  92. <!-- Log framework start-->
  93. <dependency>
  94. <groupId>org.slf4j</groupId>
  95. <artifactId>slf4j-api</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. </dependencies>
  103. </project>