pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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>cn.com.qmth</groupId>
  7. <artifactId>print-manage-api</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.3.12.RELEASE</version>
  14. <relativePath/>
  15. </parent>
  16. <properties>
  17. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  18. <qmth-boot-version>1.0.4</qmth-boot-version>
  19. <maven-compiler-version>3.8.1</maven-compiler-version>
  20. <maven-surefire-version>2.22.2</maven-surefire-version>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. <maven.compiler.target>1.8</maven.compiler.target>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <version-plugin.version>2.3.12</version-plugin.version>
  26. </properties>
  27. <repositories>
  28. <repository>
  29. <id>nexus</id>
  30. <name>nexus</name>
  31. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  32. </repository>
  33. </repositories>
  34. <pluginRepositories>
  35. <pluginRepository>
  36. <id>nexus</id>
  37. <name>nexus</name>
  38. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  39. </pluginRepository>
  40. </pluginRepositories>
  41. <dependencies>
  42. <dependency>
  43. <groupId>com.qmth.boot</groupId>
  44. <artifactId>starter-api</artifactId>
  45. <version>${qmth-boot-version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.qmth.boot</groupId>
  49. <artifactId>data-mybatis-plus</artifactId>
  50. <version>${qmth-boot-version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.qmth.boot</groupId>
  54. <artifactId>core-solar</artifactId>
  55. <version>${qmth-boot-version}</version>
  56. </dependency>
  57. <!-- Swagger jars start -->
  58. <dependency>
  59. <groupId>com.github.xiaoymin</groupId>
  60. <artifactId>knife4j-spring-boot-starter</artifactId>
  61. <version>2.0.9</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.swagger</groupId>
  65. <artifactId>swagger-annotations</artifactId>
  66. <version>1.5.24</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.swagger</groupId>
  70. <artifactId>swagger-models</artifactId>
  71. <version>1.5.24</version>
  72. </dependency>
  73. <!-- Swagger jars end -->
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-lang3</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.google.code.gson</groupId>
  80. <artifactId>gson</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.google.guava</groupId>
  84. <artifactId>guava</artifactId>
  85. <version>30.1.1-jre</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-test</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-aop</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.commons</groupId>
  98. <artifactId>commons-collections4</artifactId>
  99. <version>4.4</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.thoughtworks.xstream</groupId>
  103. <artifactId>xstream</artifactId>
  104. <version>1.4.16</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>commons-io</groupId>
  108. <artifactId>commons-io</artifactId>
  109. <version>2.8.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-text</artifactId>
  114. <version>1.9</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-fileupload</groupId>
  118. <artifactId>commons-fileupload</artifactId>
  119. <version>1.4</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.poi</groupId>
  123. <artifactId>poi</artifactId>
  124. <version>3.9</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi-ooxml</artifactId>
  129. <version>3.9</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.poi</groupId>
  133. <artifactId>poi-ooxml-schemas</artifactId>
  134. <version>3.9</version>
  135. </dependency>
  136. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-core -->
  137. <dependency>
  138. <groupId>cn.hutool</groupId>
  139. <artifactId>hutool-core</artifactId>
  140. <version>5.8.22</version>
  141. </dependency>
  142. <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j -->
  143. <!-- https://mvnrepository.com/artifact/net.lingala.zip4j/zip4j -->
  144. <dependency>
  145. <groupId>net.lingala.zip4j</groupId>
  146. <artifactId>zip4j</artifactId>
  147. <version>1.3.2</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.alibaba</groupId>
  151. <artifactId>fastjson</artifactId>
  152. <version>1.2.62</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.quartz-scheduler</groupId>
  156. <artifactId>quartz</artifactId>
  157. <exclusions>
  158. <exclusion>
  159. <artifactId>c3p0</artifactId>
  160. <groupId>com.mchange</groupId>
  161. </exclusion>
  162. <exclusion>
  163. <artifactId>*</artifactId>
  164. <groupId>com.zaxxer</groupId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.quartz-scheduler</groupId>
  170. <artifactId>quartz-jobs</artifactId>
  171. </dependency>
  172. <dependency>
  173. <groupId>net.sf.json-lib</groupId>
  174. <artifactId>json-lib-ext-spring</artifactId>
  175. <version>1.0.2</version>
  176. </dependency>
  177. </dependencies>
  178. <dependencyManagement>
  179. <dependencies>
  180. <dependency>
  181. <groupId>org.springframework.boot</groupId>
  182. <artifactId>spring-boot-dependencies</artifactId>
  183. <version>${spring-boot.version}</version>
  184. <type>pom</type>
  185. <scope>import</scope>
  186. </dependency>
  187. </dependencies>
  188. </dependencyManagement>
  189. <build>
  190. <finalName>${project.artifactId}</finalName>
  191. <plugins>
  192. <plugin>
  193. <groupId>org.springframework.boot</groupId>
  194. <artifactId>spring-boot-maven-plugin</artifactId>
  195. </plugin>
  196. </plugins>
  197. </build>
  198. </project>