pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. <groupId>com.tzld.piaoquan</groupId>
  7. <artifactId>growth-manager</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <modules>
  11. <module>api-module</module>
  12. <module>offline-module</module>
  13. <module>common-module</module>
  14. </modules>
  15. <parent>
  16. <groupId>com.tzld.commons</groupId>
  17. <artifactId>supom</artifactId>
  18. <version>1.0.6</version>
  19. </parent>
  20. <properties>
  21. <maven.compiler.source>8</maven.compiler.source>
  22. <maven.compiler.target>8</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-logging</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-log4j2</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mybatis.spring.boot</groupId>
  46. <artifactId>mybatis-spring-boot-starter</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-data-redis</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.lettuce</groupId>
  58. <artifactId>lettuce-core</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.commons</groupId>
  62. <artifactId>commons-pool2</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.mybatis.generator</groupId>
  66. <artifactId>mybatis-generator-core</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-test</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. </dependency>
  77. <!-- druid数据源 -->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>druid</artifactId>
  81. <version>1.1.23</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus-boot-starter</artifactId>
  86. <version>3.5.3.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. <version>1.18.12</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.httpcomponents</groupId>
  95. <artifactId>httpclient</artifactId>
  96. <version>4.5.14</version> <!-- 使用最新版本 -->
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  99. <dependency>
  100. <groupId>org.apache.httpcomponents</groupId>
  101. <artifactId>httpmime</artifactId>
  102. <version>4.5.14</version>
  103. </dependency>
  104. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  105. <dependency>
  106. <groupId>org.apache.httpcomponents</groupId>
  107. <artifactId>httpcore</artifactId>
  108. <version>4.4.16</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.google.guava</groupId>
  112. <artifactId>guava</artifactId>
  113. <version>31.1-jre</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.alibaba</groupId>
  117. <artifactId>fastjson</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.aliyun.odps</groupId>
  121. <artifactId>odps-sdk-core</artifactId>
  122. <version>0.27.2-public</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.xuxueli</groupId>
  126. <artifactId>xxl-job-core</artifactId>
  127. </dependency>
  128. <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
  129. <dependency>
  130. <groupId>commons-codec</groupId>
  131. <artifactId>commons-codec</artifactId>
  132. <version>1.17.1</version>
  133. </dependency>
  134. <!--XML 解析包-->
  135. <dependency>
  136. <groupId>org.jdom</groupId>
  137. <artifactId>jdom2</artifactId>
  138. <version>2.0.6</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.aliyun.openservices</groupId>
  142. <artifactId>ons-client</artifactId>
  143. <version>1.8.4.Final</version>
  144. </dependency>
  145. </dependencies>
  146. </project>