pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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. <parent>
  7. <groupId>vip.xiaonuo</groupId>
  8. <artifactId>snowy-plugin-disk</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <artifactId>snowy-plugin-disk-func</artifactId>
  12. <version>2.0.0</version>
  13. <packaging>jar</packaging>
  14. <description>业务功能插件func实现</description>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <configuration>
  21. <source>14</source>
  22. <target>14</target>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <name>qiwen-file</name>
  28. <properties>
  29. <!-- <java.version>1.8</java.version>-->
  30. <spring-cloud.version>Hoxton.SR1</spring-cloud.version>
  31. <skipTests>true</skipTests>
  32. <docker.image.prefix>scp</docker.image.prefix>
  33. <release-path>target/../release</release-path>
  34. <app-name>${project.artifactId}-${project.version}</app-name>
  35. <qiwenshare.version>1.2.8</qiwenshare.version>
  36. <java.version>1.8</java.version>
  37. <spring-cloud.version>Hoxton.SR9</spring-cloud.version>
  38. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  39. <maven.compiler.encoding>UTF-8</maven.compiler.encoding>
  40. <qiwenshare-common.version>${qiwenshare.version}</qiwenshare-common.version>
  41. <ufop.version>${qiwenshare.version}</ufop.version>
  42. <aliyun.sdk.oss.version>3.13.2</aliyun.sdk.oss.version>
  43. <fastdfs-client.version>1.26.2</fastdfs-client.version>
  44. <commons-fileupload.version>1.4</commons-fileupload.version>
  45. <commons-io.version>2.11.0</commons-io.version>
  46. <jjwt.version>0.9.1</jjwt.version>
  47. <thumbnailator.version>0.4.16</thumbnailator.version>
  48. <fastjson2.version>2.0.34</fastjson2.version>
  49. <swagger-annotations.version>2.1.4</swagger-annotations.version>
  50. <mybatis-plus.version>3.5.2</mybatis-plus.version>
  51. <poi-version>5.2.2</poi-version>
  52. <xdocreport-version>2.0.2</xdocreport-version>
  53. <pdf-box-version>3.0.0-RC1</pdf-box-version>
  54. <javacpp.version>1.5.7</javacpp.version>
  55. <javacv.version>1.5.7</javacv.version>
  56. <ffmpeg.version>5.0-1.5.7</ffmpeg.version>
  57. <minio.version>8.5.7</minio.version>
  58. <qiniu.version>7.9.2</qiniu.version>
  59. <hutool.version>5.8.16</hutool.version>
  60. <springdoc-openapi.version>1.6.1</springdoc-openapi.version>
  61. <okhttp.version>5.0.0-alpha.3</okhttp.version>
  62. <aliyun-sdk.version>4.0.3</aliyun-sdk.version>
  63. <sevenzipjbinding.version>16.02-2.01</sevenzipjbinding.version>
  64. <jpinyin.version>1.1.8</jpinyin.version>
  65. <jaudiotagger.version>2.0.1</jaudiotagger.version>
  66. <htmlunit.version>2.62.0</htmlunit.version>
  67. <poi.version>5.2.3</poi.version>
  68. </properties>
  69. <dependencies>
  70. <dependency>
  71. <groupId>io.minio</groupId>
  72. <artifactId>minio</artifactId>
  73. <version>8.4.0</version>
  74. </dependency>
  75. <!-- 每个插件都要引入自己的对外接口 -->
  76. <dependency>
  77. <groupId>vip.xiaonuo</groupId>
  78. <artifactId>snowy-plugin-disk-api</artifactId>
  79. </dependency>
  80. <!-- 引入登录鉴权接口,用于获取登录用户 -->
  81. <dependency>
  82. <groupId>vip.xiaonuo</groupId>
  83. <artifactId>snowy-plugin-auth-api</artifactId>
  84. </dependency>
  85. <!-- 引入系统接口,用于授权角色等功能 -->
  86. <dependency>
  87. <groupId>vip.xiaonuo</groupId>
  88. <artifactId>snowy-plugin-sys-api</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>vip.xiaonuo</groupId>
  92. <artifactId>snowy-plugin-sys-func</artifactId>
  93. </dependency>
  94. <!-- 引入开发工具接口,用于配置信息 -->
  95. <dependency>
  96. <groupId>vip.xiaonuo</groupId>
  97. <artifactId>snowy-plugin-dev-api</artifactId>
  98. </dependency>
  99. <!-- 引入多数据源接口,用于提供数据源 -->
  100. <dependency>
  101. <groupId>vip.xiaonuo</groupId>
  102. <artifactId>snowy-plugin-dbs-api</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-web</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-lang3</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springdoc</groupId>
  114. <artifactId>springdoc-openapi-ui</artifactId>
  115. <version>${springdoc-openapi.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.projectlombok</groupId>
  119. <artifactId>lombok</artifactId>
  120. <optional>true</optional>
  121. </dependency>
  122. <!-- fastjson -->
  123. <dependency>
  124. <groupId>com.alibaba.fastjson2</groupId>
  125. <artifactId>fastjson2</artifactId>
  126. <version>${fastjson2.version}</version>
  127. </dependency>
  128. <!-- 导入Mysql数据库链接jar包-->
  129. <dependency>
  130. <groupId>mysql</groupId>
  131. <artifactId>mysql-connector-java</artifactId>
  132. <scope>runtime</scope>
  133. </dependency>
  134. <!--jpa-->
  135. <dependency>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-starter-data-jpa</artifactId>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter-aop</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-starter-test</artifactId>
  146. <scope>test</scope>
  147. </dependency>
  148. <dependency>
  149. <groupId>com.baomidou</groupId>
  150. <artifactId>mybatis-plus-boot-starter</artifactId>
  151. </dependency>
  152. <!--mybatis end-->
  153. <dependency>
  154. <groupId>com.qiwenshare</groupId>
  155. <artifactId>ufop-spring-boot-starter</artifactId>
  156. <version>${ufop.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>co.elastic.clients</groupId>
  160. <artifactId>elasticsearch-java</artifactId>
  161. <version>8.1.2</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.fasterxml.jackson.core</groupId>
  165. <artifactId>jackson-databind</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>jakarta.json</groupId>
  169. <artifactId>jakarta.json-api</artifactId>
  170. <version>2.0.1</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>commons-io</groupId>
  174. <artifactId>commons-io</artifactId>
  175. </dependency>
  176. <dependency>
  177. <groupId>org</groupId>
  178. <artifactId>jaudiotagger</artifactId>
  179. <version>${jaudiotagger.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.inversoft</groupId>
  183. <artifactId>prime-jwt</artifactId>
  184. <version>2.0.0</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.modelmapper</groupId>
  188. <artifactId>modelmapper</artifactId>
  189. <version>2.4.2</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>jakarta.json</groupId>
  193. <artifactId>jakarta.json-api</artifactId>
  194. <version>2.0.1</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.glassfish</groupId>
  198. <artifactId>jakarta.json</artifactId>
  199. <version>2.0.1</version>
  200. <scope>runtime</scope>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.apache.commons</groupId>
  204. <artifactId>commons-exec</artifactId>
  205. <version>1.3</version>
  206. </dependency>
  207. <!-- Apache POI -->
  208. <!-- <dependency>-->
  209. <!-- <groupId>org.apache.poi</groupId>-->
  210. <!-- <artifactId>poi</artifactId>-->
  211. <!-- <version>5.2.3</version>-->
  212. <!-- </dependency>-->
  213. <!-- <dependency>-->
  214. <!-- <groupId>org.apache.poi</groupId>-->
  215. <!-- <artifactId>poi-ooxml</artifactId>-->
  216. <!-- <version>5.2.3</version>-->
  217. <!-- </dependency>-->
  218. <dependency><!--jar破解工具-->
  219. <groupId>org.javassist</groupId>
  220. <artifactId>javassist</artifactId>
  221. <version>3.20.0-GA</version>
  222. </dependency>
  223. <!-- Apache POI核心依赖 -->
  224. <dependency>
  225. <groupId>org.apache.poi</groupId>
  226. <artifactId>poi</artifactId>
  227. <version>5.2.5</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.poi</groupId>
  231. <artifactId>poi-ooxml</artifactId>
  232. <version>5.2.5</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.apache.poi</groupId>
  236. <artifactId>poi-scratchpad</artifactId>
  237. <version>5.2.5</version>
  238. </dependency>
  239. <!-- Apache Commons IO -->
  240. <dependency>
  241. <groupId>commons-io</groupId>
  242. <artifactId>commons-io</artifactId>
  243. <version>2.13.0</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.aspose</groupId>
  247. <artifactId>aspose-words-jdk16</artifactId>
  248. <version>15.8.0</version>
  249. <scope>system</scope>
  250. <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-15.8.0.jar</systemPath>
  251. </dependency>
  252. <dependency>
  253. <groupId>com.aspose</groupId>
  254. <artifactId>aspose-cells</artifactId>
  255. <version>8.5.2</version>
  256. <scope>system</scope>
  257. <systemPath>${project.basedir}/src/main/resources/lib/aspose-cells-8.5.2.jar</systemPath>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.aspose</groupId>
  261. <artifactId>aspose-slides</artifactId>
  262. <version>15.9.0</version>
  263. <scope>system</scope>
  264. <systemPath>${project.basedir}/src/main/resources/lib/aspose-slides-15.9.0.jar</systemPath>
  265. </dependency>
  266. <dependency>
  267. <groupId>com.aspose</groupId>
  268. <artifactId>aspose-pdf</artifactId>
  269. <version>22.4.0</version>
  270. <scope>system</scope>
  271. <systemPath>${project.basedir}/src/main/resources/lib/aspose-pdf-22.4.jar</systemPath>
  272. </dependency>
  273. </dependencies>
  274. <repositories>
  275. <repository>
  276. <id>jcenter</id>
  277. <url>https://jcenter.bintray.com/</url>
  278. </repository>
  279. <repository>
  280. <id>aliyunmaven</id>
  281. <url>https://maven.aliyun.com/repository/public</url>
  282. <releases><enabled>true</enabled></releases>
  283. <snapshots><enabled>false</enabled></snapshots>
  284. </repository>
  285. <repository>
  286. <id>central</id>
  287. <url>https://repo.maven.apache.org/maven2</url>
  288. <releases><enabled>true</enabled></releases>
  289. <snapshots><enabled>false</enabled></snapshots>
  290. </repository>
  291. <repository>
  292. <id>apache.snapshots</id>
  293. <url>https://repository.apache.org/snapshots</url>
  294. <releases><enabled>false</enabled></releases>
  295. <snapshots><enabled>true</enabled></snapshots>
  296. </repository>
  297. </repositories>
  298. </project>