pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <parent>
  6. <groupId>com.tzld.commons</groupId>
  7. <artifactId>supom</artifactId>
  8. <version>1.0.6</version>
  9. </parent>
  10. <groupId>com.tzld.piaoquan</groupId>
  11. <artifactId>features-tools</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>features-tools</name>
  14. <description>features-tools</description>
  15. <properties>
  16. <maven.compiler.source>1.8</maven.compiler.source>
  17. <maven.compiler.target>1.8</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mybatis.spring.boot</groupId>
  36. <artifactId>mybatis-spring-boot-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.github.pagehelper</groupId>
  40. <artifactId>pagehelper-spring-boot-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mybatis.generator</groupId>
  44. <artifactId>mybatis-generator-core</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-lang3</artifactId>
  49. </dependency>
  50. <!-- druid数据源 -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid</artifactId>
  54. <version>1.1.23</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.xuxueli</groupId>
  58. <artifactId>xxl-job-core</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. <version>1.18.34</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpclient</artifactId>
  69. <version>4.5.14</version> <!-- 使用最新版本 -->
  70. </dependency>
  71. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpmime</artifactId>
  75. <version>4.5.14</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
  78. <dependency>
  79. <groupId>org.apache.httpcomponents</groupId>
  80. <artifactId>httpcore</artifactId>
  81. <version>4.4.16</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-lang3</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-pool2</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.google.guava</groupId>
  93. <artifactId>guava</artifactId>
  94. <version>31.1-jre</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.alibaba</groupId>
  98. <artifactId>fastjson</artifactId>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  101. <dependency>
  102. <groupId>cn.hutool</groupId>
  103. <artifactId>hutool-all</artifactId>
  104. <version>5.8.33</version>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-core -->
  107. <dependency>
  108. <groupId>cn.hutool</groupId>
  109. <artifactId>hutool-core</artifactId>
  110. <version>5.8.33</version>
  111. </dependency>
  112. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-http -->
  113. <dependency>
  114. <groupId>cn.hutool</groupId>
  115. <artifactId>hutool-http</artifactId>
  116. <version>5.8.33</version>
  117. </dependency>
  118. </dependencies>
  119. <build>
  120. <!-- 固定包名 避免随着版本变动 -->
  121. <finalName>features-tools</finalName>
  122. <resources>
  123. <resource>
  124. <directory>src/main/resources</directory>
  125. <includes>
  126. <include>**/*.yml</include>
  127. <include>**/*.yaml</include>
  128. <include>**/*.xml</include>
  129. <include>**/*.properties</include>
  130. <include>**/*.txt</include>
  131. </includes>
  132. <filtering>false</filtering>
  133. </resource>
  134. </resources>
  135. <plugins>
  136. <plugin>
  137. <groupId>org.springframework.boot</groupId>
  138. <artifactId>spring-boot-maven-plugin</artifactId>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>