pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <groupId>com.tzy</groupId>
  7. <artifactId>tzy</artifactId>
  8. <version>4.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>weixin-api</artifactId>
  12. <dependencies>
  13. <!-- Spring框架基本的核心工具 -->
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-context-support</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <!-- druid -->
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>druid-spring-boot-starter</artifactId>
  27. <version>${druid.version}</version>
  28. </dependency>
  29. <!--lombok-->
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <version>1.18.12</version>
  34. </dependency>
  35. <!--httpclient-->
  36. <dependency>
  37. <groupId>commons-httpclient</groupId>
  38. <artifactId>commons-httpclient</artifactId>
  39. <version>3.0.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpclient</artifactId>
  44. </dependency>
  45. <!--json-->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>fastjson</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>net.sf.json-lib</groupId>
  52. <artifactId>json-lib</artifactId>
  53. <version>2.4</version>
  54. <classifier>jdk15</classifier>
  55. </dependency>
  56. <dependency>
  57. <groupId>commons-lang</groupId>
  58. <artifactId>commons-lang</artifactId>
  59. <version>2.6</version>
  60. </dependency>
  61. </dependencies>
  62. </project>