pom.xml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>cn.hmsoft</groupId>
  5. <artifactId>ses.parent</artifactId>
  6. <version>1.0</version>
  7. <packaging>pom</packaging>
  8. <properties>
  9. <poi.version>3.16</poi.version>
  10. <junit.version>4.12</junit.version>
  11. <log4j.version>2.17.0</log4j.version>
  12. <quartz.version>2.3.0</quartz.version>
  13. <swagger.version>2.8.0</swagger.version>
  14. <itextpdf.version>7.0.1</itextpdf.version>
  15. <spring.version>5.0.5.RELEASE</spring.version>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>javax.servlet</groupId>
  22. <artifactId>javax.servlet-api</artifactId>
  23. <version>3.1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-core</artifactId>
  28. <version>${spring.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-context</artifactId>
  33. <version>${spring.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-beans</artifactId>
  38. <version>${spring.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-aop</artifactId>
  43. <version>${spring.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-aspects</artifactId>
  48. <version>${spring.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-jdbc</artifactId>
  53. <version>${spring.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework</groupId>
  57. <artifactId>spring-web</artifactId>
  58. <version>${spring.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework</groupId>
  62. <artifactId>spring-webmvc</artifactId>
  63. <version>${spring.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-webflux</artifactId>
  68. <version>${spring.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-websocket</artifactId>
  73. <version>${spring.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-tx</artifactId>
  78. <version>${spring.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-test</artifactId>
  83. <version>${spring.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>mysql</groupId>
  87. <artifactId>mysql-connector-java</artifactId>
  88. <version>5.1.46</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.google.code.gson</groupId>
  92. <artifactId>gson</artifactId>
  93. <version>2.8.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-io</groupId>
  97. <artifactId>commons-io</artifactId>
  98. <version>2.4</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>commons-fileupload</groupId>
  102. <artifactId>commons-fileupload</artifactId>
  103. <version>1.3.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.apache.poi</groupId>
  107. <artifactId>poi</artifactId>
  108. <version>${poi.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.poi</groupId>
  112. <artifactId>poi-ooxml-schemas</artifactId>
  113. <version>${poi.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.poi</groupId>
  117. <artifactId>poi-ooxml</artifactId>
  118. <version>${poi.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.poi</groupId>
  122. <artifactId>poi-excelant</artifactId>
  123. <version>${poi.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.poi</groupId>
  127. <artifactId>poi-scratchpad</artifactId>
  128. <version>${poi.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.slf4j</groupId>
  132. <artifactId>slf4j-api</artifactId>
  133. <version>1.7.25</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.logging.log4j</groupId>
  137. <artifactId>log4j-core</artifactId>
  138. <version>${log4j.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.logging.log4j</groupId>
  142. <artifactId>log4j-api</artifactId>
  143. <version>${log4j.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.quartz-scheduler</groupId>
  147. <artifactId>quartz</artifactId>
  148. <version>${quartz.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.quartz-scheduler</groupId>
  152. <artifactId>quartz-jobs</artifactId>
  153. <version>${quartz.version}</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>junit</groupId>
  157. <artifactId>junit</artifactId>
  158. <version>${junit.version}</version>
  159. <scope>test</scope>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.itextpdf</groupId>
  163. <artifactId>itextpdf</artifactId>
  164. <version>5.5.13</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.itextpdf</groupId>
  168. <artifactId>barcodes</artifactId>
  169. <version>${itextpdf.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.itextpdf</groupId>
  173. <artifactId>font-asian</artifactId>
  174. <version>${itextpdf.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>com.itextpdf</groupId>
  178. <artifactId>forms</artifactId>
  179. <version>${itextpdf.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.itextpdf</groupId>
  183. <artifactId>io</artifactId>
  184. <version>${itextpdf.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.itextpdf</groupId>
  188. <artifactId>kernel</artifactId>
  189. <version>${itextpdf.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.itextpdf</groupId>
  193. <artifactId>hyph</artifactId>
  194. <version>${itextpdf.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.itextpdf</groupId>
  198. <artifactId>layout</artifactId>
  199. <version>${itextpdf.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>com.itextpdf</groupId>
  203. <artifactId>pdfa</artifactId>
  204. <version>${itextpdf.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.itextpdf</groupId>
  208. <artifactId>pdftest</artifactId>
  209. <version>${itextpdf.version}</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>com.itextpdf</groupId>
  213. <artifactId>sign</artifactId>
  214. <version>${itextpdf.version}</version>
  215. </dependency>
  216. <!-- swagger-springmvc -->
  217. <dependency>
  218. <groupId>io.springfox</groupId>
  219. <artifactId>springfox-swagger2</artifactId>
  220. <version>${swagger.version}</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>io.springfox</groupId>
  224. <artifactId>springfox-swagger-ui</artifactId>
  225. <version>${swagger.version}</version>
  226. </dependency>
  227. <!-- swagger-springmvc dependencies -->
  228. <dependency>
  229. <groupId>com.google.guava</groupId>
  230. <artifactId>guava</artifactId>
  231. <version>18.0</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.freemarker</groupId>
  235. <artifactId>freemarker</artifactId>
  236. <version>2.3.23</version>
  237. </dependency>
  238. <!-- com.google.zxing qrcode -->
  239. <dependency>
  240. <groupId>com.google.zxing</groupId>
  241. <artifactId>core</artifactId>
  242. <version>3.2.1</version>
  243. </dependency>
  244. <dependency>
  245. <groupId>com.google.zxing</groupId>
  246. <artifactId>javase</artifactId>
  247. <version>3.2.1</version>
  248. </dependency>
  249. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  250. <dependency>
  251. <groupId>org.apache.commons</groupId>
  252. <artifactId>commons-lang3</artifactId>
  253. <version>3.10</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>com.github.houbb</groupId>
  257. <artifactId>opencc4j</artifactId>
  258. <version>1.1.0</version>
  259. </dependency>
  260. </dependencies>
  261. <build>
  262. <plugins>
  263. <plugin>
  264. <artifactId>maven-war-plugin</artifactId>
  265. <version>3.0.0</version>
  266. </plugin>
  267. <plugin>
  268. <groupId>org.apache.maven.plugins</groupId>
  269. <artifactId>maven-compiler-plugin</artifactId>
  270. <version>3.5.1</version>
  271. <configuration>
  272. <!-- <failOnMissingWebXml>false</failOnMissingWebXml>-->
  273. <source>1.8</source>
  274. <target>1.8</target>
  275. <encoding>UTF-8</encoding>
  276. <compilerArguments>
  277. <extdirs>lib</extdirs>
  278. </compilerArguments>
  279. </configuration>
  280. </plugin>
  281. <plugin>
  282. <groupId>org.apache.maven.plugins</groupId>
  283. <artifactId>maven-surefire-plugin</artifactId>
  284. <version>2.19.1</version>
  285. <configuration>
  286. <skip>true</skip>
  287. </configuration>
  288. </plugin>
  289. <plugin>
  290. <groupId>org.apache.maven.plugins</groupId>
  291. <artifactId>maven-resources-plugin</artifactId>
  292. <version>2.6</version>
  293. </plugin>
  294. </plugins>
  295. </build>
  296. <modules>
  297. <module>ses-manage-v1</module>
  298. <module>ses-enrol-v1</module>
  299. <module>ses-model-v1</module>
  300. </modules>
  301. </project>