pom.xml 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  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>scancloud</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. <mybatis-plus.version>3.4.3.3</mybatis-plus.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. <qmth-boot-version>1.0.3</qmth-boot-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>core-security</artifactId>
  45. <version>${qmth-boot-version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.qmth.boot</groupId>
  49. <artifactId>starter-api</artifactId>
  50. <version>${qmth-boot-version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.qmth.boot</groupId>
  54. <artifactId>data-mybatis-plus</artifactId>
  55. <version>${qmth-boot-version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qmth.boot</groupId>
  59. <artifactId>core-schedule</artifactId>
  60. <version>${qmth-boot-version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.github.jeffreyning</groupId>
  64. <artifactId>mybatisplus-plus</artifactId>
  65. <version>1.5.1-RELEASE</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.qmth.boot</groupId>
  69. <artifactId>core-fss</artifactId>
  70. <version>${qmth-boot-version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qmth.boot</groupId>
  74. <artifactId>core-retrofit</artifactId>
  75. <version>${qmth-boot-version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.qmth.boot</groupId>
  79. <artifactId>core-concurrent</artifactId>
  80. <version>${qmth-boot-version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.qmth.boot</groupId>
  84. <artifactId>tools-poi</artifactId>
  85. <version>${qmth-boot-version}</version>
  86. </dependency>
  87. <!-- Swagger jars start -->
  88. <dependency>
  89. <groupId>com.github.xiaoymin</groupId>
  90. <artifactId>knife4j-spring-boot-starter</artifactId>
  91. <version>2.0.9</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>io.swagger</groupId>
  95. <artifactId>swagger-annotations</artifactId>
  96. <version>1.5.24</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-models</artifactId>
  101. <version>1.5.24</version>
  102. </dependency>
  103. <!-- Swagger jars end -->
  104. <dependency>
  105. <groupId>com.google.guava</groupId>
  106. <artifactId>guava</artifactId>
  107. <version>30.1.1-jre</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-collections4</artifactId>
  112. <version>4.4</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.thoughtworks.xstream</groupId>
  116. <artifactId>xstream</artifactId>
  117. <version>1.4.16</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. <version>2.8.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.commons</groupId>
  126. <artifactId>commons-text</artifactId>
  127. <version>1.9</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-fileupload</groupId>
  131. <artifactId>commons-fileupload</artifactId>
  132. <version>1.4</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.quartz-scheduler</groupId>
  136. <artifactId>quartz</artifactId>
  137. <exclusions>
  138. <exclusion>
  139. <artifactId>c3p0</artifactId>
  140. <groupId>com.mchange</groupId>
  141. </exclusion>
  142. <exclusion>
  143. <artifactId>*</artifactId>
  144. <groupId>com.zaxxer</groupId>
  145. </exclusion>
  146. </exclusions>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.quartz-scheduler</groupId>
  150. <artifactId>quartz-jobs</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>net.sf.json-lib</groupId>
  154. <artifactId>json-lib-ext-spring</artifactId>
  155. <version>1.0.2</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.qmth.boot</groupId>
  159. <artifactId>core-cache</artifactId>
  160. <version>${qmth-boot-version}</version>
  161. </dependency>
  162. </dependencies>
  163. <dependencyManagement>
  164. <dependencies>
  165. <dependency>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-dependencies</artifactId>
  168. <version>${spring-boot.version}</version>
  169. <type>pom</type>
  170. <scope>import</scope>
  171. </dependency>
  172. </dependencies>
  173. </dependencyManagement>
  174. <build>
  175. <finalName>${project.artifactId}</finalName>
  176. <plugins>
  177. <plugin>
  178. <groupId>org.springframework.boot</groupId>
  179. <artifactId>spring-boot-maven-plugin</artifactId>
  180. </plugin>
  181. <!--
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-surefire-plugin</artifactId>
  185. <version>${maven-surefire-version}</version>
  186. <configuration>
  187. <testFailureIgnore>true</testFailureIgnore>
  188. <skipTests>true</skipTests>
  189. <skip>true</skip>
  190. </configuration>
  191. </plugin>
  192. <plugin>
  193. <groupId>org.apache.maven.plugins</groupId>
  194. <artifactId>maven-jar-plugin</artifactId>
  195. <configuration>
  196. <archive>
  197. <manifest>
  198. <mainClass>cn.com.qmth.scancloud.ApiApplication</mainClass>
  199. <addClasspath>true</addClasspath>
  200. <classpathPrefix>./</classpathPrefix>
  201. </manifest>
  202. <manifestEntries>
  203. <Class-Path>../config/</Class-Path>
  204. </manifestEntries>
  205. </archive>
  206. <excludes>
  207. <exclude>importtemplates/*</exclude>
  208. <exclude>mapper/*</exclude>
  209. <exclude>*.properties</exclude>
  210. <exclude>*.xml</exclude>
  211. </excludes>
  212. </configuration>
  213. </plugin>
  214. <plugin>
  215. <groupId>org.apache.maven.plugins</groupId>
  216. <artifactId>maven-assembly-plugin</artifactId>
  217. <configuration>
  218. <finalName>${project.artifactId}</finalName>
  219. <descriptors>
  220. <descriptor>assembly.xml</descriptor>
  221. </descriptors>
  222. </configuration>
  223. <executions>
  224. <execution>
  225. <id>make-assembly</id>
  226. <phase>install</phase>
  227. <goals>
  228. <goal>assembly</goal>
  229. </goals>
  230. </execution>
  231. </executions>
  232. </plugin>
  233. -->
  234. </plugins>
  235. </build>
  236. </project>