pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.tencent.tsf</groupId>
  6. <artifactId>tsf-demo</artifactId>
  7. <version>1.23.0-Greenwich-RELEASE</version>
  8. </parent>
  9. <artifactId>provider-demo</artifactId>
  10. <packaging>jar</packaging>
  11. <name>provider-demo</name>
  12. <dependencies>
  13. <!-- TSF 启动器 -->
  14. <dependency>
  15. <groupId>joda-time</groupId>
  16. <artifactId>joda-time</artifactId>
  17. <version>2.9.4</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.tencent.tsf</groupId>
  21. <artifactId>spring-cloud-tsf-starter</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.tencentcloudapi</groupId>
  25. <artifactId>tencentcloud-sdk-java</artifactId>
  26. <version>3.1.49</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-data-jpa</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>druid</artifactId>
  40. <version>1.1.10</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.httpcomponents</groupId>
  44. <artifactId>httpcore</artifactId>
  45. <version>4.4.6</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.httpcomponents</groupId>
  49. <artifactId>httpclient</artifactId>
  50. <version>4.5.3</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpmime</artifactId>
  55. <version>4.5.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>fastjson</artifactId>
  60. <version>1.2.51</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <!--工具包-->
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-all</artifactId>
  67. <version>5.4.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <version>1.18.12</version>
  73. </dependency>
  74. </dependencies>
  75. </project>