pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <packaging>pom</packaging>
  6. <modules>
  7. <module>tencent-ad-server</module>
  8. </modules>
  9. <parent>
  10. <groupId>com.tzld.commons</groupId>
  11. <artifactId>supom</artifactId>
  12. <version>1.0.6</version>
  13. </parent>
  14. <groupId>com.tzld.piaoquan</groupId>
  15. <artifactId>tencent-ad-manage</artifactId>
  16. <version>1.0.0</version>
  17. <name>tencent-ad-manage</name>
  18. <description>tencent-ad-manage</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-logging</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-log4j2</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mybatis.spring.boot</groupId>
  40. <artifactId>mybatis-spring-boot-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.pagehelper</groupId>
  44. <artifactId>pagehelper-spring-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-redis</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>io.lettuce</groupId>
  52. <artifactId>lettuce-core</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-pool2</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.mybatis.generator</groupId>
  60. <artifactId>mybatis-generator-core</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-test</artifactId>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. </dependency>
  71. <!-- druid数据源 -->
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>druid</artifactId>
  75. <version>1.1.23</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba</groupId>
  79. <artifactId>fastjson</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.projectlombok</groupId>
  83. <artifactId>lombok</artifactId>
  84. <version>1.18.12</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.httpcomponents</groupId>
  88. <artifactId>httpclient</artifactId>
  89. <version>4.5.14</version> <!-- 使用最新版本 -->
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  92. <dependency>
  93. <groupId>org.apache.httpcomponents</groupId>
  94. <artifactId>httpmime</artifactId>
  95. <version>4.5.14</version>
  96. </dependency>
  97. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  98. <dependency>
  99. <groupId>org.apache.httpcomponents</groupId>
  100. <artifactId>httpcore</artifactId>
  101. <version>4.4.16</version>
  102. </dependency>
  103. <!-- https://mvnrepository.com/artifact/ws.schild/jave-all-deps -->
  104. <dependency>
  105. <groupId>ws.schild</groupId>
  106. <artifactId>jave-all-deps</artifactId>
  107. <version>3.3.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.aliyun.oss</groupId>
  111. <artifactId>aliyun-sdk-oss</artifactId>
  112. <version>3.17.0</version> <!-- 请根据需要选择版本 -->
  113. </dependency>
  114. <dependency>
  115. <groupId>com.xuxueli</groupId>
  116. <artifactId>xxl-job-core</artifactId>
  117. </dependency>
  118. </dependencies>
  119. </project>