pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.yihu.ehr</groupId>
  6. <artifactId>ehr-cloud-parent</artifactId>
  7. <version>1.13.0</version>
  8. <relativePath>../ehr-cloud-parent/pom.xml</relativePath>
  9. </parent>
  10. <artifactId>commons-util</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!-- true -->
  14. <dependency>
  15. <groupId>com.fasterxml.jackson.core</groupId>
  16. <artifactId>jackson-databind</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.fasterxml.jackson.core</groupId>
  20. <artifactId>jackson-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fasterxml.jackson.core</groupId>
  24. <artifactId>jackson-annotations</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>net.lingala.zip4j</groupId>
  32. <artifactId>zip4j</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.belerweb</groupId>
  36. <artifactId>pinyin4j</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-codec</groupId>
  40. <artifactId>commons-codec</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-context</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>javax.servlet-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.httpcomponents</groupId>
  52. <artifactId>httpcore</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.httpcomponents</groupId>
  56. <artifactId>httpclient</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpmime</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.poi</groupId>
  64. <artifactId>poi-ooxml</artifactId>
  65. <version>3.12</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.unboundid</groupId>
  69. <artifactId>unboundid-ldapsdk</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>eu.medsea.mimeutil</groupId>
  73. <artifactId>mime-util</artifactId>
  74. <version>2.1.3</version>
  75. <exclusions>
  76. <exclusion>
  77. <groupId>org.slf4j</groupId>
  78. <artifactId>slf4j-log4j12</artifactId>
  79. </exclusion>
  80. </exclusions>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-httpclient</groupId>
  84. <artifactId>commons-httpclient</artifactId>
  85. <version>3.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>net.minidev</groupId>
  89. <artifactId>json-smart</artifactId>
  90. <version>2.2.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-net</groupId>
  94. <artifactId>commons-net</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>commons-io</groupId>
  98. <artifactId>commons-io</artifactId>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.apache.maven.plugins</groupId>
  105. <artifactId>maven-compiler-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>