pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  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.jobticket</groupId>
  6. <artifactId>jobticket</artifactId>
  7. <version>3.2.0</version>
  8. <packaging>jar</packaging>
  9. <name>jobticket</name>
  10. <description>工作票系统</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.1.17.RELEASE</version>
  15. <relativePath />
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  22. <mybatis.spring.boot.starter.version>2.1.3</mybatis.spring.boot.starter.version>
  23. <pagehelper.spring.boot.starter.version>1.3.0</pagehelper.spring.boot.starter.version>
  24. <fastjson.version>1.2.74</fastjson.version>
  25. <druid.version>1.2.2</druid.version>
  26. <commons.io.version>2.11.0</commons.io.version>
  27. <commons.fileupload.version>1.3.3</commons.fileupload.version>
  28. <bitwalker.version>1.19</bitwalker.version>
  29. <jwt.version>0.9.1</jwt.version>
  30. <kaptcha.version>2.3.2</kaptcha.version>
  31. <swagger.version>2.9.2</swagger.version>
  32. <poi.version>3.17</poi.version>
  33. <oshi.version>5.2.5</oshi.version>
  34. <jna.version>5.5.0</jna.version>
  35. <velocity.version>1.7</velocity.version>
  36. <oracle.version>11.2.0.3</oracle.version>
  37. <lombok.version>1.18.4</lombok.version>
  38. <mybatisplus.version>3.3.1</mybatisplus.version>
  39. <jxls.version>2.4.2</jxls.version>
  40. <jxls-poi.version>1.1.0</jxls-poi.version>
  41. <log4j2.version>2.17.1</log4j2.version>
  42. </properties>
  43. <dependencies>
  44. <!-- SpringBoot 核心包 -->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter</artifactId>
  48. </dependency>
  49. <!-- SpringBoot 测试 -->
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-test</artifactId>
  53. <scope>test</scope>
  54. </dependency>
  55. <!-- SpringBoot 拦截器 -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-aop</artifactId>
  59. </dependency>
  60. <!-- SpringBoot Web容器 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web</artifactId>
  64. </dependency>
  65. <!-- spring-boot-devtools -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-devtools</artifactId>
  69. <optional>true</optional> <!-- 表示依赖不会传递 -->
  70. </dependency>
  71. <!-- spring security 安全认证 -->
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-security</artifactId>
  75. </dependency>
  76. <!-- redis 缓存操作 -->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-redis</artifactId>
  80. </dependency>
  81. <!-- pool 对象池 -->
  82. <dependency>
  83. <groupId>org.apache.commons</groupId>
  84. <artifactId>commons-pool2</artifactId>
  85. </dependency>
  86. <!--oracle驱动-->
  87. <dependency>
  88. <groupId>com.oracle</groupId>
  89. <artifactId>ojdbc6</artifactId>
  90. <version>${oracle.version}</version>
  91. </dependency>
  92. <!-- SpringBoot集成mybatis框架 -->
  93. <dependency>
  94. <groupId>org.mybatis.spring.boot</groupId>
  95. <artifactId>mybatis-spring-boot-starter</artifactId>
  96. <version>${mybatis.spring.boot.starter.version}</version>
  97. </dependency>
  98. <!-- pagehelper 分页插件 -->
  99. <dependency>
  100. <groupId>com.github.pagehelper</groupId>
  101. <artifactId>pagehelper-spring-boot-starter</artifactId>
  102. <version>${pagehelper.spring.boot.starter.version}</version>
  103. </dependency>
  104. <!--阿里数据库连接池 -->
  105. <dependency>
  106. <groupId>com.alibaba</groupId>
  107. <artifactId>druid-spring-boot-starter</artifactId>
  108. <version>${druid.version}</version>
  109. </dependency>
  110. <!--常用工具类 -->
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. </dependency>
  115. <!--io常用工具类 -->
  116. <dependency>
  117. <groupId>commons-io</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>${commons.io.version}</version>
  120. </dependency>
  121. <!--文件上传工具类 -->
  122. <dependency>
  123. <groupId>commons-fileupload</groupId>
  124. <artifactId>commons-fileupload</artifactId>
  125. <version>${commons.fileupload.version}</version>
  126. </dependency>
  127. <!-- 解析客户端操作系统、浏览器等 -->
  128. <dependency>
  129. <groupId>eu.bitwalker</groupId>
  130. <artifactId>UserAgentUtils</artifactId>
  131. <version>${bitwalker.version}</version>
  132. </dependency>
  133. <!-- 阿里JSON解析器 -->
  134. <dependency>
  135. <groupId>com.alibaba</groupId>
  136. <artifactId>fastjson</artifactId>
  137. <version>${fastjson.version}</version>
  138. </dependency>
  139. <!--Spring框架基本的核心工具-->
  140. <dependency>
  141. <groupId>org.springframework</groupId>
  142. <artifactId>spring-context-support</artifactId>
  143. </dependency>
  144. <!--Token生成与解析-->
  145. <dependency>
  146. <groupId>io.jsonwebtoken</groupId>
  147. <artifactId>jjwt</artifactId>
  148. <version>${jwt.version}</version>
  149. </dependency>
  150. <!-- swagger2-->
  151. <dependency>
  152. <groupId>io.springfox</groupId>
  153. <artifactId>springfox-swagger2</artifactId>
  154. <version>${swagger.version}</version>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>io.swagger</groupId>
  158. <artifactId>swagger-annotations</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <groupId>io.swagger</groupId>
  162. <artifactId>swagger-models</artifactId>
  163. </exclusion>
  164. </exclusions>
  165. </dependency>
  166. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  167. <dependency>
  168. <groupId>io.swagger</groupId>
  169. <artifactId>swagger-annotations</artifactId>
  170. <version>1.5.21</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>io.swagger</groupId>
  174. <artifactId>swagger-models</artifactId>
  175. <version>1.5.21</version>
  176. </dependency>
  177. <!-- swagger2-UI-->
  178. <dependency>
  179. <groupId>io.springfox</groupId>
  180. <artifactId>springfox-swagger-ui</artifactId>
  181. <version>${swagger.version}</version>
  182. </dependency>
  183. <!-- 获取系统信息 -->
  184. <dependency>
  185. <groupId>com.github.oshi</groupId>
  186. <artifactId>oshi-core</artifactId>
  187. <version>${oshi.version}</version>
  188. </dependency>
  189. <!--velocity代码生成使用模板 -->
  190. <dependency>
  191. <groupId>org.apache.velocity</groupId>
  192. <artifactId>velocity</artifactId>
  193. <version>${velocity.version}</version>
  194. </dependency>
  195. <!--验证码 -->
  196. <dependency>
  197. <groupId>com.github.penggle</groupId>
  198. <artifactId>kaptcha</artifactId>
  199. <version>${kaptcha.version}</version>
  200. <exclusions>
  201. <exclusion>
  202. <artifactId>javax.servlet-api</artifactId>
  203. <groupId>javax.servlet</groupId>
  204. </exclusion>
  205. </exclusions>
  206. </dependency>
  207. <!--mybatisplus-->
  208. <dependency>
  209. <groupId>com.baomidou</groupId>
  210. <artifactId>mybatis-plus-boot-starter</artifactId>
  211. <version>${mybatisplus.version}</version>
  212. <exclusions>
  213. <exclusion>
  214. <groupId>com.baomidou</groupId>
  215. <artifactId>mybatis-plus-generator</artifactId>
  216. </exclusion>
  217. </exclusions>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.springframework.boot</groupId>
  221. <artifactId>spring-boot-starter-mail</artifactId>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.apache.poi</groupId>
  225. <artifactId>poi</artifactId>
  226. <version>5.2.2</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>com.deepoove</groupId>
  230. <artifactId>poi-tl</artifactId>
  231. <version>1.12.1</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.jodconverter</groupId>
  235. <artifactId>jodconverter-spring-boot-starter</artifactId>
  236. <version>4.4.2</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>org.jodconverter</groupId>
  240. <artifactId>jodconverter-local</artifactId>
  241. <version>4.4.2</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.jodconverter</groupId>
  245. <artifactId>jodconverter-core</artifactId>
  246. <version>4.4.2</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>org.libreoffice</groupId>
  250. <artifactId>ridl</artifactId>
  251. <version>7.2.5</version>
  252. </dependency>
  253. <!--审批流-->
  254. <dependency>
  255. <groupId>org.activiti</groupId>
  256. <artifactId>activiti-engine</artifactId>
  257. <version>6.0.0</version>
  258. <exclusions>
  259. <exclusion>
  260. <groupId>org.mybatis</groupId>
  261. <artifactId>mybatis</artifactId>
  262. </exclusion>
  263. </exclusions>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.activiti</groupId>
  267. <artifactId>activiti-spring</artifactId>
  268. <version>6.0.0</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.springframework.boot</groupId>
  272. <artifactId>spring-boot-test</artifactId>
  273. </dependency>
  274. <dependency>
  275. <groupId>org.junit.jupiter</groupId>
  276. <artifactId>junit-jupiter</artifactId>
  277. <version>RELEASE</version>
  278. <scope>compile</scope>
  279. </dependency>
  280. <!--framework-->
  281. <dependency>
  282. <groupId>org.springframework.boot</groupId>
  283. <artifactId>spring-boot-starter-freemarker</artifactId>
  284. <version>2.1.2.RELEASE</version>
  285. </dependency>
  286. <dependency>
  287. <groupId>com.itextpdf</groupId>
  288. <artifactId>itextpdf</artifactId>
  289. <version>5.4.2</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.xhtmlrenderer</groupId>
  293. <artifactId>flying-saucer-pdf</artifactId>
  294. <version>9.0.3</version>
  295. </dependency>
  296. <!--jpinyin-->
  297. <dependency>
  298. <groupId>com.github.stuxuhai</groupId>
  299. <artifactId>jpinyin</artifactId>
  300. <version>1.1.8</version>
  301. </dependency>
  302. <!-- log4j日志组件 -->
  303. <dependency>
  304. <groupId>org.apache.logging.log4j</groupId>
  305. <artifactId>log4j-api</artifactId>
  306. <version>${log4j2.version}</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.apache.logging.log4j</groupId>
  310. <artifactId>log4j-to-slf4j</artifactId>
  311. <version>${log4j2.version}</version>
  312. </dependency>
  313. </dependencies>
  314. <build>
  315. <finalName>${project.artifactId}</finalName>
  316. <plugins>
  317. <plugin>
  318. <groupId>org.springframework.boot</groupId>
  319. <artifactId>spring-boot-maven-plugin</artifactId>
  320. <configuration>
  321. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  322. </configuration>
  323. </plugin>
  324. </plugins>
  325. </build>
  326. <repositories>
  327. <!--阿里云镜像仓库-->
  328. <repository>
  329. <id>public</id>
  330. <name>aliyun nexus</name>
  331. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  332. <releases>
  333. <enabled>true</enabled>
  334. </releases>
  335. </repository>
  336. <!--oracle驱动没有发布到中央仓库,只能从此仓库下载-->
  337. <repository>
  338. <id>jeecg</id>
  339. <name>jeecg Repository</name>
  340. <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
  341. <snapshots>
  342. <enabled>false</enabled>
  343. </snapshots>
  344. </repository>
  345. </repositories>
  346. <pluginRepositories>
  347. <pluginRepository>
  348. <id>public</id>
  349. <name>aliyun nexus</name>
  350. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  351. <releases>
  352. <enabled>true</enabled>
  353. </releases>
  354. <snapshots>
  355. <enabled>false</enabled>
  356. </snapshots>
  357. </pluginRepository>
  358. </pluginRepositories>
  359. </project>