pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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>marking-paper-struct</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-solar</artifactId>
  45. <version>${qmth-boot-version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.qmth.boot</groupId>
  49. <artifactId>core-security</artifactId>
  50. <version>${qmth-boot-version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.qmth.boot</groupId>
  54. <artifactId>starter-api</artifactId>
  55. <version>${qmth-boot-version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.qmth.boot</groupId>
  59. <artifactId>data-mybatis-plus</artifactId>
  60. <version>${qmth-boot-version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.qmth.boot</groupId>
  64. <artifactId>core-schedule</artifactId>
  65. <version>${qmth-boot-version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.jeffreyning</groupId>
  69. <artifactId>mybatisplus-plus</artifactId>
  70. <version>1.5.1-RELEASE</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.qmth.boot</groupId>
  74. <artifactId>core-fss</artifactId>
  75. <version>${qmth-boot-version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.qmth.boot</groupId>
  79. <artifactId>core-retrofit</artifactId>
  80. <version>${qmth-boot-version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.qmth.boot</groupId>
  84. <artifactId>core-concurrent</artifactId>
  85. <version>${qmth-boot-version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.qmth.boot</groupId>
  89. <artifactId>tools-poi</artifactId>
  90. <version>${qmth-boot-version}</version>
  91. </dependency>
  92. <!-- Swagger jars start -->
  93. <dependency>
  94. <groupId>com.github.xiaoymin</groupId>
  95. <artifactId>knife4j-spring-boot-starter</artifactId>
  96. <version>2.0.9</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-annotations</artifactId>
  101. <version>1.5.24</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>io.swagger</groupId>
  105. <artifactId>swagger-models</artifactId>
  106. <version>1.5.24</version>
  107. </dependency>
  108. <!-- Swagger jars end -->
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>fastjson</artifactId>
  112. <version>1.2.76</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.google.guava</groupId>
  116. <artifactId>guava</artifactId>
  117. <version>30.1.1-jre</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-collections4</artifactId>
  122. <version>4.4</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.thoughtworks.xstream</groupId>
  126. <artifactId>xstream</artifactId>
  127. <version>1.4.16</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-io</groupId>
  131. <artifactId>commons-io</artifactId>
  132. <version>2.8.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.commons</groupId>
  136. <artifactId>commons-text</artifactId>
  137. <version>1.9</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-fileupload</groupId>
  141. <artifactId>commons-fileupload</artifactId>
  142. <version>1.4</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.quartz-scheduler</groupId>
  146. <artifactId>quartz</artifactId>
  147. <exclusions>
  148. <exclusion>
  149. <artifactId>c3p0</artifactId>
  150. <groupId>com.mchange</groupId>
  151. </exclusion>
  152. <exclusion>
  153. <artifactId>*</artifactId>
  154. <groupId>com.zaxxer</groupId>
  155. </exclusion>
  156. </exclusions>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.quartz-scheduler</groupId>
  160. <artifactId>quartz-jobs</artifactId>
  161. </dependency>
  162. <dependency>
  163. <groupId>net.sf.json-lib</groupId>
  164. <artifactId>json-lib-ext-spring</artifactId>
  165. <version>1.0.2</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>com.qmth.boot</groupId>
  169. <artifactId>core-cache</artifactId>
  170. <version>${qmth-boot-version}</version>
  171. </dependency>
  172. </dependencies>
  173. <dependencyManagement>
  174. <dependencies>
  175. <dependency>
  176. <groupId>org.springframework.boot</groupId>
  177. <artifactId>spring-boot-dependencies</artifactId>
  178. <version>${spring-boot.version}</version>
  179. <type>pom</type>
  180. <scope>import</scope>
  181. </dependency>
  182. </dependencies>
  183. </dependencyManagement>
  184. <build>
  185. <finalName>${project.artifactId}</finalName>
  186. <plugins>
  187. <plugin>
  188. <groupId>org.springframework.boot</groupId>
  189. <artifactId>spring-boot-maven-plugin</artifactId>
  190. </plugin>
  191. </plugins>
  192. </build>
  193. </project>