pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  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.5</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. </properties>
  42. <dependencies>
  43. <!-- SpringBoot 核心包 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter</artifactId>
  47. </dependency>
  48. <!-- SpringBoot 测试 -->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. <!-- SpringBoot 拦截器 -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-aop</artifactId>
  58. </dependency>
  59. <!-- SpringBoot Web容器 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. </dependency>
  64. <!-- spring-boot-devtools -->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-devtools</artifactId>
  68. <optional>true</optional> <!-- 表示依赖不会传递 -->
  69. </dependency>
  70. <!-- spring security 安全认证 -->
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-security</artifactId>
  74. </dependency>
  75. <!-- redis 缓存操作 -->
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-data-redis</artifactId>
  79. </dependency>
  80. <!-- pool 对象池 -->
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-pool2</artifactId>
  84. </dependency>
  85. <!--oracle驱动-->
  86. <dependency>
  87. <groupId>com.oracle</groupId>
  88. <artifactId>ojdbc6</artifactId>
  89. <version>${oracle.version}</version>
  90. </dependency>
  91. <!-- SpringBoot集成mybatis框架 -->
  92. <dependency>
  93. <groupId>org.mybatis.spring.boot</groupId>
  94. <artifactId>mybatis-spring-boot-starter</artifactId>
  95. <version>${mybatis.spring.boot.starter.version}</version>
  96. </dependency>
  97. <!-- pagehelper 分页插件 -->
  98. <dependency>
  99. <groupId>com.github.pagehelper</groupId>
  100. <artifactId>pagehelper-spring-boot-starter</artifactId>
  101. <version>${pagehelper.spring.boot.starter.version}</version>
  102. </dependency>
  103. <!--阿里数据库连接池 -->
  104. <dependency>
  105. <groupId>com.alibaba</groupId>
  106. <artifactId>druid-spring-boot-starter</artifactId>
  107. <version>${druid.version}</version>
  108. </dependency>
  109. <!--常用工具类 -->
  110. <dependency>
  111. <groupId>org.apache.commons</groupId>
  112. <artifactId>commons-lang3</artifactId>
  113. </dependency>
  114. <!--io常用工具类 -->
  115. <dependency>
  116. <groupId>commons-io</groupId>
  117. <artifactId>commons-io</artifactId>
  118. <version>${commons.io.version}</version>
  119. </dependency>
  120. <!--文件上传工具类 -->
  121. <dependency>
  122. <groupId>commons-fileupload</groupId>
  123. <artifactId>commons-fileupload</artifactId>
  124. <version>${commons.fileupload.version}</version>
  125. </dependency>
  126. <!-- 解析客户端操作系统、浏览器等 -->
  127. <dependency>
  128. <groupId>eu.bitwalker</groupId>
  129. <artifactId>UserAgentUtils</artifactId>
  130. <version>${bitwalker.version}</version>
  131. </dependency>
  132. <!-- 阿里JSON解析器 -->
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>fastjson</artifactId>
  136. <version>${fastjson.version}</version>
  137. </dependency>
  138. <!--Spring框架基本的核心工具-->
  139. <dependency>
  140. <groupId>org.springframework</groupId>
  141. <artifactId>spring-context-support</artifactId>
  142. </dependency>
  143. <!--Token生成与解析-->
  144. <dependency>
  145. <groupId>io.jsonwebtoken</groupId>
  146. <artifactId>jjwt</artifactId>
  147. <version>${jwt.version}</version>
  148. </dependency>
  149. <!-- swagger2-->
  150. <dependency>
  151. <groupId>io.springfox</groupId>
  152. <artifactId>springfox-swagger2</artifactId>
  153. <version>${swagger.version}</version>
  154. <exclusions>
  155. <exclusion>
  156. <groupId>io.swagger</groupId>
  157. <artifactId>swagger-annotations</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>io.swagger</groupId>
  161. <artifactId>swagger-models</artifactId>
  162. </exclusion>
  163. </exclusions>
  164. </dependency>
  165. <!--防止进入swagger页面报类型转换错误,排除2.9.2中的引用,手动增加1.5.21版本-->
  166. <dependency>
  167. <groupId>io.swagger</groupId>
  168. <artifactId>swagger-annotations</artifactId>
  169. <version>1.5.21</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.swagger</groupId>
  173. <artifactId>swagger-models</artifactId>
  174. <version>1.5.21</version>
  175. </dependency>
  176. <!-- swagger2-UI-->
  177. <dependency>
  178. <groupId>io.springfox</groupId>
  179. <artifactId>springfox-swagger-ui</artifactId>
  180. <version>${swagger.version}</version>
  181. </dependency>
  182. <!-- 获取系统信息 -->
  183. <dependency>
  184. <groupId>com.github.oshi</groupId>
  185. <artifactId>oshi-core</artifactId>
  186. <version>${oshi.version}</version>
  187. </dependency>
  188. <!-- excel工具 -->
  189. <dependency>
  190. <groupId>org.apache.poi</groupId>
  191. <artifactId>poi-ooxml</artifactId>
  192. <!-- <version>${poi.version}</version>-->
  193. <version>4.1.2</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>org.jxls</groupId>
  197. <artifactId>jxls</artifactId>
  198. <version>${jxls.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.jxls</groupId>
  202. <artifactId>jxls-poi</artifactId>
  203. <version>${jxls-poi.version}</version>
  204. </dependency>
  205. <!--velocity代码生成使用模板 -->
  206. <dependency>
  207. <groupId>org.apache.velocity</groupId>
  208. <artifactId>velocity</artifactId>
  209. <version>${velocity.version}</version>
  210. </dependency>
  211. <!-- 定时任务 -->
  212. <!--<dependency>
  213. <groupId>org.quartz-scheduler</groupId>
  214. <artifactId>quartz</artifactId>
  215. <exclusions>
  216. <exclusion>
  217. <groupId>com.mchange</groupId>
  218. <artifactId>c3p0</artifactId>
  219. </exclusion>
  220. </exclusions>
  221. </dependency>-->
  222. <!--验证码 -->
  223. <dependency>
  224. <groupId>com.github.penggle</groupId>
  225. <artifactId>kaptcha</artifactId>
  226. <version>${kaptcha.version}</version>
  227. <exclusions>
  228. <exclusion>
  229. <artifactId>javax.servlet-api</artifactId>
  230. <groupId>javax.servlet</groupId>
  231. </exclusion>
  232. </exclusions>
  233. </dependency>
  234. <!--lombok-->
  235. <dependency>
  236. <groupId>org.projectlombok</groupId>
  237. <artifactId>lombok</artifactId>
  238. <version>${lombok.version}</version>
  239. </dependency>
  240. <!--mybatisplus-->
  241. <dependency>
  242. <groupId>com.baomidou</groupId>
  243. <artifactId>mybatis-plus-boot-starter</artifactId>
  244. <version>${mybatisplus.version}</version>
  245. <exclusions>
  246. <exclusion>
  247. <groupId>com.baomidou</groupId>
  248. <artifactId>mybatis-plus-generator</artifactId>
  249. </exclusion>
  250. </exclusions>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.springframework.boot</groupId>
  254. <artifactId>spring-boot-starter-mail</artifactId>
  255. </dependency>
  256. <dependency>
  257. <groupId>com.github.ulisesbocchio</groupId>
  258. <artifactId>jasypt-spring-boot-starter</artifactId>
  259. <version>2.1.0</version>
  260. </dependency>
  261. <dependency>
  262. <groupId>org.apache.poi</groupId>
  263. <artifactId>poi</artifactId>
  264. <version>4.1.2</version>
  265. </dependency>
  266. <!--<dependency>
  267. <groupId>org.apache.poi</groupId>
  268. <artifactId>poi-ooxml</artifactId>
  269. <version>3.17</version>
  270. </dependency>-->
  271. <!--<dependency>
  272. <groupId>org.apache.poi</groupId>
  273. <artifactId>ooxml-schemas</artifactId>
  274. <version>1.1</version>
  275. </dependency>-->
  276. <!--审批流-->
  277. <dependency>
  278. <groupId>org.activiti</groupId>
  279. <artifactId>activiti-engine</artifactId>
  280. <version>6.0.0</version>
  281. <exclusions>
  282. <exclusion>
  283. <groupId>org.mybatis</groupId>
  284. <artifactId>mybatis</artifactId>
  285. </exclusion>
  286. </exclusions>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.activiti</groupId>
  290. <artifactId>activiti-spring</artifactId>
  291. <version>6.0.0</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.springframework.boot</groupId>
  295. <artifactId>spring-boot-test</artifactId>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.junit.jupiter</groupId>
  299. <artifactId>junit-jupiter</artifactId>
  300. <version>RELEASE</version>
  301. <scope>compile</scope>
  302. </dependency>
  303. <!--framework-->
  304. <dependency>
  305. <groupId>org.springframework.boot</groupId>
  306. <artifactId>spring-boot-starter-freemarker</artifactId>
  307. <version>2.1.2.RELEASE</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>com.itextpdf</groupId>
  311. <artifactId>itextpdf</artifactId>
  312. <version>5.4.2</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>com.itextpdf.tool</groupId>
  316. <artifactId>xmlworker</artifactId>
  317. <version>5.4.1</version>
  318. </dependency>
  319. <dependency>
  320. <groupId>com.itextpdf</groupId>
  321. <artifactId>itext-asian</artifactId>
  322. <version>5.2.0</version>
  323. </dependency>
  324. <dependency>
  325. <groupId>org.xhtmlrenderer</groupId>
  326. <artifactId>flying-saucer-pdf</artifactId>
  327. <version>9.0.3</version>
  328. </dependency>
  329. <!--jpinyin-->
  330. <dependency>
  331. <groupId>com.github.stuxuhai</groupId>
  332. <artifactId>jpinyin</artifactId>
  333. <version>1.1.8</version>
  334. </dependency>
  335. <!-- jfreechart -->
  336. <dependency>
  337. <groupId>org.jfree</groupId>
  338. <artifactId>jfreechart</artifactId>
  339. <version>1.5.0</version>
  340. </dependency>
  341. <!-- pinyin4j 汉语转拼音 -->
  342. <dependency>
  343. <groupId>com.belerweb</groupId>
  344. <artifactId>pinyin4j</artifactId>
  345. <version>2.5.1</version>
  346. </dependency>
  347. </dependencies>
  348. <build>
  349. <finalName>${project.artifactId}</finalName>
  350. <plugins>
  351. <plugin>
  352. <groupId>org.springframework.boot</groupId>
  353. <artifactId>spring-boot-maven-plugin</artifactId>
  354. <configuration>
  355. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  356. </configuration>
  357. </plugin>
  358. </plugins>
  359. </build>
  360. <repositories>
  361. <!--阿里云镜像仓库-->
  362. <repository>
  363. <id>public</id>
  364. <name>aliyun nexus</name>
  365. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  366. <releases>
  367. <enabled>true</enabled>
  368. </releases>
  369. </repository>
  370. <!--oracle驱动没有发布到中央仓库,只能从此仓库下载-->
  371. <repository>
  372. <id>jeecg</id>
  373. <name>jeecg Repository</name>
  374. <url>http://maven.jeewx.com/nexus/content/repositories/jeecg</url>
  375. <snapshots>
  376. <enabled>false</enabled>
  377. </snapshots>
  378. </repository>
  379. </repositories>
  380. <pluginRepositories>
  381. <pluginRepository>
  382. <id>public</id>
  383. <name>aliyun nexus</name>
  384. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  385. <releases>
  386. <enabled>true</enabled>
  387. </releases>
  388. <snapshots>
  389. <enabled>false</enabled>
  390. </snapshots>
  391. </pluginRepository>
  392. </pluginRepositories>
  393. </project>