pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <parent>
  6. <artifactId>jjt</artifactId>
  7. <groupId>com.jjt</groupId>
  8. <version>3.8.6</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jjt-biz</artifactId>
  12. <description>
  13. biz业务模块
  14. </description>
  15. <dependencies>
  16. <!-- chatGPT -->
  17. <dependency>
  18. <groupId>com.github.plexpt</groupId>
  19. <artifactId>chatgpt</artifactId>
  20. <version>4.0.7</version>
  21. </dependency>
  22. <!--PDF转WORD-->
  23. <dependency>
  24. <groupId>com.arcsoft</groupId>
  25. <artifactId>arcsoft-sdk-face</artifactId>
  26. <version>4.1.1.0</version>
  27. <scope>system</scope>
  28. <systemPath>${project.basedir}/lib/arcsoft-sdk-face-4.1.1.0.jar</systemPath>
  29. </dependency>
  30. <!--人脸识别-->
  31. <dependency>
  32. <groupId>com.aspose</groupId>
  33. <artifactId>aspose-pdf</artifactId>
  34. <version>22.4</version>
  35. <scope>system</scope>
  36. <systemPath>${project.basedir}/lib/aspose-pdf-22.4.cracked.jar</systemPath>
  37. </dependency>
  38. <!--这些只是apache ftp server相关的依赖,springboot项目本身的依赖大家自己添加即可-->
  39. <dependency>
  40. <groupId>org.apache.ftpserver</groupId>
  41. <artifactId>ftpserver-core</artifactId>
  42. <version>1.2.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.mina</groupId>
  46. <artifactId>mina-core</artifactId>
  47. <version>2.2.1</version>
  48. </dependency>
  49. <!--apache ftp server end-->
  50. <!-- 通用工具-->
  51. <dependency>
  52. <groupId>com.jjt</groupId>
  53. <artifactId>jjt-common</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.jjt</groupId>
  57. <artifactId>jjt-system</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. </dependency>
  63. <!-- SpringBoot Websocket -->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-websocket</artifactId>
  67. </dependency>
  68. <!-- 集成elasticsearch start -->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  72. </dependency>
  73. <!-- 集成elasticsearch end -->
  74. </dependencies>
  75. </project>