pom.xml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.qmth</groupId>
  6. <artifactId>exam-reserve</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.3.12.RELEASE</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <spring-boot.version>2.3.12.RELEASE</spring-boot.version>
  17. <mybatis-plus.version>3.4.3.3</mybatis-plus.version>
  18. <maven-compiler-version>3.8.1</maven-compiler-version>
  19. <maven-surefire-version>2.22.2</maven-surefire-version>
  20. <maven.compiler.source>1.8</maven.compiler.source>
  21. <maven.compiler.target>1.8</maven.compiler.target>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. <qmth-boot-version>1.0.6</qmth-boot-version>
  25. </properties>
  26. <repositories>
  27. <repository>
  28. <id>nexus</id>
  29. <name>nexus</name>
  30. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  31. </repository>
  32. </repositories>
  33. <pluginRepositories>
  34. <pluginRepository>
  35. <id>nexus</id>
  36. <name>nexus</name>
  37. <url>http://192.168.10.201:8081/repository/maven-public/</url>
  38. </pluginRepository>
  39. </pluginRepositories>
  40. <dependencies>
  41. <dependency>
  42. <groupId>com.qmth.boot</groupId>
  43. <artifactId>core-security</artifactId>
  44. <version>${qmth-boot-version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.qmth.boot</groupId>
  48. <artifactId>starter-api</artifactId>
  49. <version>${qmth-boot-version}</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.qmth.boot</groupId>
  53. <artifactId>data-mybatis-plus</artifactId>
  54. <version>${qmth-boot-version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.qmth.boot</groupId>
  58. <artifactId>core-schedule</artifactId>
  59. <version>${qmth-boot-version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.qmth.boot</groupId>
  63. <artifactId>core-solar</artifactId>
  64. <version>${qmth-boot-version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.qmth.boot</groupId>
  68. <artifactId>core-fss</artifactId>
  69. <version>${qmth-boot-version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.qmth.boot</groupId>
  73. <artifactId>core-cache</artifactId>
  74. <version>${qmth-boot-version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.qmth.boot</groupId>
  78. <artifactId>data-redis</artifactId>
  79. <version>${qmth-boot-version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.qmth.boot</groupId>
  83. <artifactId>core-retrofit</artifactId>
  84. <version>${qmth-boot-version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.qmth.boot</groupId>
  88. <artifactId>core-concurrent</artifactId>
  89. <version>${qmth-boot-version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.qmth.boot</groupId>
  93. <artifactId>tools-poi</artifactId>
  94. <version>${qmth-boot-version}</version>
  95. </dependency>
  96. <!-- Swagger jars start -->
  97. <dependency>
  98. <groupId>com.github.xiaoymin</groupId>
  99. <artifactId>knife4j-spring-boot-starter</artifactId>
  100. <version>2.0.9</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>io.swagger</groupId>
  104. <artifactId>swagger-annotations</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>io.swagger</groupId>
  108. <artifactId>swagger-models</artifactId>
  109. </dependency>
  110. <!-- Swagger jars end -->
  111. <dependency>
  112. <groupId>com.github.jeffreyning</groupId>
  113. <artifactId>mybatisplus-plus</artifactId>
  114. <version>1.5.1-RELEASE</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.alibaba</groupId>
  118. <artifactId>fastjson</artifactId>
  119. <version>1.2.83</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-collections4</artifactId>
  124. <version>4.4</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-io</groupId>
  128. <artifactId>commons-io</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-text</artifactId>
  133. <version>1.10.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.commons</groupId>
  137. <artifactId>commons-math3</artifactId>
  138. <version>3.6.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.projectlombok</groupId>
  142. <artifactId>lombok</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.itextpdf</groupId>
  146. <artifactId>layout</artifactId>
  147. <version>7.0.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.itextpdf</groupId>
  151. <artifactId>kernel</artifactId>
  152. <version>7.0.1</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>easyexcel</artifactId>
  157. <version>3.3.4</version>
  158. <exclusions>
  159. <exclusion>
  160. <groupId>org.slf4j</groupId>
  161. <artifactId>slf4j-api</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.apache.rocketmq</groupId>
  167. <artifactId>rocketmq-spring-boot-starter</artifactId>
  168. <version>2.3.1</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-starter-test</artifactId>
  173. <scope>test</scope>
  174. </dependency>
  175. </dependencies>
  176. <dependencyManagement>
  177. <dependencies>
  178. <dependency>
  179. <groupId>org.springframework.boot</groupId>
  180. <artifactId>spring-boot-dependencies</artifactId>
  181. <version>${spring-boot.version}</version>
  182. <type>pom</type>
  183. <scope>import</scope>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.rocketmq</groupId>
  187. <artifactId>rocketmq-client</artifactId>
  188. <version>5.3.1</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.apache.rocketmq</groupId>
  192. <artifactId>rocketmq-acl</artifactId>
  193. <version>5.3.1</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.google.guava</groupId>
  197. <artifactId>guava</artifactId>
  198. <version>32.0.1-jre</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.javassist</groupId>
  202. <artifactId>javassist</artifactId>
  203. <version>3.25.0-GA</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.redisson</groupId>
  207. <artifactId>redisson</artifactId>
  208. <version>3.15.0</version>
  209. </dependency>
  210. <!--<dependency>
  211. <groupId>org.objenesis</groupId>
  212. <artifactId>objenesis</artifactId>
  213. <version>3.3</version>
  214. </dependency>-->
  215. <dependency>
  216. <groupId>io.swagger</groupId>
  217. <artifactId>swagger-annotations</artifactId>
  218. <version>1.5.24</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>io.swagger</groupId>
  222. <artifactId>swagger-models</artifactId>
  223. <version>1.5.24</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>commons-io</groupId>
  227. <artifactId>commons-io</artifactId>
  228. <version>2.16.1</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>xml-apis</groupId>
  232. <artifactId>xml-apis</artifactId>
  233. <version>1.4.01</version>
  234. </dependency>
  235. </dependencies>
  236. </dependencyManagement>
  237. <build>
  238. <finalName>${project.artifactId}</finalName>
  239. <plugins>
  240. <plugin>
  241. <groupId>org.springframework.boot</groupId>
  242. <artifactId>spring-boot-maven-plugin</artifactId>
  243. </plugin>
  244. <plugin>
  245. <groupId>org.apache.maven.plugins</groupId>
  246. <artifactId>maven-compiler-plugin</artifactId>
  247. <configuration>
  248. <source>${maven.compiler.source}</source>
  249. <target>${maven.compiler.target}</target>
  250. <encoding>${project.build.sourceEncoding}</encoding>
  251. </configuration>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.maven.plugins</groupId>
  255. <artifactId>maven-surefire-plugin</artifactId>
  256. <configuration>
  257. <testFailureIgnore>true</testFailureIgnore>
  258. <skipTests>true</skipTests>
  259. <skip>true</skip>
  260. </configuration>
  261. </plugin>
  262. </plugins>
  263. </build>
  264. </project>