pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <parent>
  6. <artifactId>jkzl-starter</artifactId>
  7. <groupId>com.yihu</groupId>
  8. <version>2.0.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>utils</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 此项目包含大多数平常开发中所需要的辅助工具类 -->
  16. <dependency>
  17. <groupId>org.springframework</groupId>
  18. <artifactId>spring-context</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-beans</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>javax.servlet-api</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.httpcomponents</groupId>
  30. <artifactId>httpcore</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.apache.httpcomponents</groupId>
  34. <artifactId>httpclient</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpmime</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.slf4j</groupId>
  42. <artifactId>slf4j-api</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.bouncycastle</groupId>
  46. <artifactId>bcprov-jdk15on</artifactId>
  47. </dependency>
  48. <!-- Jackson library -->
  49. <dependency>
  50. <groupId>com.fasterxml.jackson.core</groupId>
  51. <artifactId>jackson-annotations</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.fasterxml.jackson.core</groupId>
  55. <artifactId>jackson-core</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. <!-- Apache Commons -->
  62. <dependency>
  63. <groupId>org.apache.commons</groupId>
  64. <artifactId>commons-lang3</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-collections</groupId>
  68. <artifactId>commons-collections</artifactId>
  69. </dependency>
  70. <!-- 拼音 -->
  71. <dependency>
  72. <groupId>com.belerweb</groupId>
  73. <artifactId>pinyin4j</artifactId>
  74. </dependency>
  75. </dependencies>
  76. </project>