pom.xml 6.4 KB

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