pom.xml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>org.jeecgframework.boot</groupId>
  5. <artifactId>jeecg-boot-parent</artifactId>
  6. <version>3.7.0</version>
  7. </parent>
  8. <artifactId>jflow-core</artifactId>
  9. <version>1.1.0</version>
  10. <modelVersion>4.0.0</modelVersion>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <jdk.version>1.8</jdk.version>
  14. <!-- Shiro -->
  15. <shiro.version>1.11.0</shiro.version>
  16. <!-- XML文件的读取 -->
  17. <dom4j.version>1.6.1</dom4j.version>
  18. <!-- 拼音 -->
  19. <pinyin4j.version>2.5.1</pinyin4j.version>
  20. <!-- Apache Commons -->
  21. <commons-pool2.version>2.6.2</commons-pool2.version>
  22. <commons-codec.version>1.10</commons-codec.version>
  23. <commons-lang3.version>3.7</commons-lang3.version>
  24. <commons-net.version>3.5</commons-net.version>
  25. <!-- 文件写入,上传-->
  26. <commons-fileupload.version>1.2.1</commons-fileupload.version>
  27. <commons-io.version>2.11.0</commons-io.version>
  28. <!-- JSON -->
  29. <json-lib.version>2.4</json-lib.version>
  30. <!-- api的依赖 生成Excel文件-->
  31. <org.apache.poi.version>4.1.2</org.apache.poi.version>
  32. <!-- 文件打成压缩包 -->
  33. <org.apache.ant.version>1.9.7</org.apache.ant.version>
  34. <!-- 上传文件到FTP/SFTP -->
  35. <com.jcraft.version>0.1.54</com.jcraft.version>
  36. <!-- Qrcode 二维码需要的jar包 -->
  37. <com.google.zxing.version>2.2</com.google.zxing.version>
  38. <!-- 多个PDF文件合并 -->
  39. <pdfbox.version>2.0.8</pdfbox.version>
  40. <!-- 开发者表单后台打印 -->
  41. <jsoup.version>1.13.1</jsoup.version>
  42. <!-- 上传文件到阿里云 -->
  43. <aliyun.sdk.version>3.15.0</aliyun.sdk.version>
  44. <okhttp.version>4.10.0</okhttp.version>
  45. </properties>
  46. <dependencies>
  47. <!-- <dependency>-->
  48. <!-- <groupId>org.jeecgframework.boot</groupId>-->
  49. <!-- <artifactId>jeecg-boot-base-core</artifactId>-->
  50. <!-- </dependency>-->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-web</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-logging</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-jdbc</artifactId>
  64. </dependency>
  65. <!-- SpringBoot Reids 依赖 -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-data-redis</artifactId>
  69. </dependency>
  70. <!-- Spring session 依赖 -->
  71. <dependency>
  72. <groupId>org.springframework.session</groupId>
  73. <artifactId>spring-session-data-redis</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-pool2</artifactId>
  78. <version>${commons-pool2.version}</version>
  79. </dependency>
  80. <!--Shiro核心框架 -->
  81. <dependency>
  82. <groupId>org.apache.shiro</groupId>
  83. <artifactId>shiro-core</artifactId>
  84. <version>${shiro.version}</version>
  85. </dependency>
  86. <!-- Shiro使用Srping框架 -->
  87. <dependency>
  88. <groupId>org.apache.shiro</groupId>
  89. <artifactId>shiro-spring</artifactId>
  90. <version>${shiro.version}</version>
  91. </dependency>
  92. <!-- Shiro使用EhCache缓存框架 -->
  93. <dependency>
  94. <groupId>org.apache.shiro</groupId>
  95. <artifactId>shiro-ehcache</artifactId>
  96. <version>${shiro.version}</version>
  97. </dependency>
  98. <!-- XML文件读取 -->
  99. <dependency>
  100. <groupId>dom4j</groupId>
  101. <artifactId>dom4j</artifactId>
  102. <version>${dom4j.version}</version>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>xml-apis</groupId>
  106. <artifactId>xml-apis</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <!-- 拼音 -->
  111. <dependency>
  112. <groupId>com.belerweb</groupId>
  113. <artifactId>pinyin4j</artifactId>
  114. <version>${pinyin4j.version}</version>
  115. </dependency>
  116. <!-- Apache Commons BEGIN-->
  117. <dependency>
  118. <groupId>commons-codec</groupId>
  119. <artifactId>commons-codec</artifactId>
  120. <version>${commons-codec.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-lang3</artifactId>
  125. <version>${commons-lang3.version}</version>
  126. </dependency>
  127. <!-- org.apache.commons.net.ftp -->
  128. <dependency>
  129. <groupId>commons-net</groupId>
  130. <artifactId>commons-net</artifactId>
  131. <version>${commons-net.version}</version>
  132. </dependency>
  133. <!-- 文件写入/上传-->
  134. <dependency>
  135. <groupId>commons-fileupload</groupId>
  136. <artifactId>commons-fileupload</artifactId>
  137. <version>${commons-fileupload.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>commons-io</groupId>
  141. <artifactId>commons-io</artifactId>
  142. <version>${commons-io.version}</version>
  143. </dependency>
  144. <!-- Apache Commons END -->
  145. <!-- JSON -->
  146. <dependency>
  147. <groupId>net.sf.json-lib</groupId>
  148. <artifactId>json-lib</artifactId>
  149. <version>${json-lib.version}</version>
  150. <classifier>jdk15</classifier>
  151. </dependency>
  152. <!-- JSON -->
  153. <!-- 生成excel -->
  154. <dependency>
  155. <groupId>org.apache.poi</groupId>
  156. <artifactId>poi-ooxml</artifactId>
  157. <version>${org.apache.poi.version}</version>
  158. </dependency>
  159. <!-- 文件打成压缩包 -->
  160. <dependency>
  161. <groupId>org.apache.ant</groupId>
  162. <artifactId>ant</artifactId>
  163. <version>${org.apache.ant.version}</version>
  164. </dependency>
  165. <!-- 上传文件到FTP/SFTP -->
  166. <dependency>
  167. <groupId>com.jcraft</groupId>
  168. <artifactId>jsch</artifactId>
  169. <version>${com.jcraft.version}</version>
  170. </dependency>
  171. <!-- 条形码、二维码生成 -->
  172. <dependency>
  173. <groupId>com.google.zxing</groupId>
  174. <artifactId>core</artifactId>
  175. <version>${com.google.zxing.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>com.google.zxing</groupId>
  179. <artifactId>javase</artifactId>
  180. <version>${com.google.zxing.version}</version>
  181. </dependency>
  182. <!--多个PDF文件合并-->
  183. <dependency>
  184. <groupId>org.apache.pdfbox</groupId>
  185. <artifactId>pdfbox</artifactId>
  186. <version>${pdfbox.version}</version>
  187. </dependency>
  188. <!--开发者表单后台打印-->
  189. <dependency>
  190. <groupId>org.jsoup</groupId>
  191. <artifactId>jsoup</artifactId>
  192. <version>${jsoup.version}</version>
  193. </dependency>
  194. <!--阿里云文件上传-->
  195. <dependency>
  196. <groupId>com.aliyun.oss</groupId>
  197. <artifactId>aliyun-sdk-oss</artifactId>
  198. <version>${aliyun.sdk.version}</version>
  199. </dependency>
  200. <!-- JUnit Test -->
  201. <dependency>
  202. <groupId>junit</groupId>
  203. <artifactId>junit</artifactId>
  204. </dependency>
  205. <!-- 数据库驱动 -->
  206. <!--<dependency>
  207. <groupId>mysql</groupId>
  208. <artifactId>mysql-connector-java</artifactId>
  209. <scope>runtime</scope>
  210. </dependency>-->
  211. <dependency>
  212. <groupId>mysql</groupId>
  213. <artifactId>mysql-connector-java</artifactId>
  214. <version>8.0.27</version>
  215. </dependency>
  216. <!--瀚高数据库-->
  217. <dependency>
  218. <groupId>com.highgo</groupId>
  219. <artifactId>HgdbJdbc</artifactId>
  220. <version>6.0.4.jre8</version>
  221. </dependency>
  222. <!--postgresql数据库-->
  223. <dependency>
  224. <groupId>org.postgresql</groupId>
  225. <artifactId>postgresql</artifactId>
  226. <version>42.1.1</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>net.sourceforge.jtds</groupId>
  230. <artifactId>jtds</artifactId>
  231. <version>1.3.1</version>
  232. </dependency>
  233. <!-- 钉钉服务API -->
  234. <dependency>
  235. <groupId>com.aliyun</groupId>
  236. <artifactId>alibaba-dingtalk-service-sdk</artifactId>
  237. <version>2.0.0</version>
  238. </dependency>
  239. <!--<dependency>
  240. <groupId>com.oracle</groupId>
  241. <artifactId>ojdbc14</artifactId>
  242. <version>10.2</version>
  243. <scope>runtime</scope>
  244. </dependency>-->
  245. <!-- <dependency>
  246. <groupId>com.kingbase8</groupId>
  247. <artifactId>kingbase8</artifactId>
  248. <version>8.6</version>
  249. <scope>runtime</scope>
  250. </dependency>-->
  251. <!--<dependency>
  252. <groupId>com.oracle</groupId>
  253. <artifactId>ojdbc6</artifactId>
  254. <version>12.1.0.1</version>
  255. <scope>runtime</scope>
  256. </dependency>-->
  257. <dependency>
  258. <groupId>com.squareup.okhttp3</groupId>
  259. <artifactId>okhttp</artifactId>
  260. <version>${okhttp.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>com.sun.mail</groupId>
  264. <artifactId>jakarta.mail</artifactId>
  265. </dependency>
  266. </dependencies>
  267. <build>
  268. <plugins>
  269. <plugin>
  270. <groupId>org.apache.maven.plugins</groupId>
  271. <artifactId>maven-compiler-plugin</artifactId>
  272. <configuration>
  273. <source>1.8</source>
  274. <target>1.8</target>
  275. </configuration>
  276. </plugin>
  277. <plugin>
  278. <artifactId>maven-assembly-plugin</artifactId>
  279. <configuration>
  280. <archive>
  281. <manifest>
  282. <mainClass>kpmg.thrift.scenario.task</mainClass>
  283. </manifest>
  284. </archive>
  285. <descriptorRefs>
  286. <descriptorRef>jar-with-dependencies</descriptorRef>
  287. </descriptorRefs>
  288. </configuration>
  289. <executions>
  290. <execution>
  291. <id>make-assembly</id>
  292. <phase>package</phase>
  293. <goals>
  294. <goal>single</goal>
  295. </goals>
  296. </execution>
  297. </executions>
  298. </plugin>
  299. </plugins>
  300. </build>
  301. </project>