You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
4.0 KiB

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>han-hai-parent</artifactId>
  7. <version>3.2.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>https://maven.aliyun.com/repository/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <!-- 企业微信/钉钉 api -->
  35. <dependency>
  36. <groupId>org.jeecgframework</groupId>
  37. <artifactId>jeewx-api</artifactId>
  38. </dependency>
  39. <!-- 积木报表 -->
  40. <dependency>
  41. <groupId>org.jeecgframework.jimureport</groupId>
  42. <artifactId>jimureport-spring-boot-starter</artifactId>
  43. <version>1.5.0-beta</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. <version>4.5.13</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.github.liyiorg</groupId>
  52. <artifactId>weixin-popular</artifactId>
  53. <version>2.8.17</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.cloud</groupId>
  57. <artifactId>spring-cloud-openfeign-core</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.projectlombok</groupId>
  61. <artifactId>lombok</artifactId>
  62. <version>1.18.24</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.jeecgframework.boot</groupId>
  66. <artifactId>han-hai-module-pay</artifactId>
  67. <version>3.2.0</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. <!--语音合成-->
  71. <dependency>
  72. <groupId>com.tencentcloudapi</groupId>
  73. <artifactId>tencentcloud-speech-sdk-java</artifactId>
  74. <version>LATEST</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/com.tencentcloudapi/tencentcloud-sdk-java -->
  77. <dependency>
  78. <groupId>com.tencentcloudapi</groupId>
  79. <artifactId>tencentcloud-sdk-java</artifactId>
  80. <version>4.0.11</version>
  81. </dependency>
  82. <!--excel导入导出-->
  83. <!-- 文件上传 -->
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpmime</artifactId>
  87. <version>4.5.7</version>
  88. </dependency>
  89. <!-- JSON -->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>1.2.41</version>
  94. </dependency>
  95. <!-- POI -->
  96. <dependency>
  97. <groupId>org.apache.poi</groupId>
  98. <artifactId>poi-ooxml</artifactId>
  99. <version>3.16</version>
  100. </dependency>
  101. <!--pdf添加水印、文字、图片、印章-->
  102. <dependency>
  103. <groupId>com.itextpdf</groupId>
  104. <artifactId>itextpdf</artifactId>
  105. <version>5.5.13</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.itextpdf</groupId>
  109. <artifactId>itext-asian</artifactId>
  110. <version>5.2.0</version>
  111. </dependency>
  112. <!--pdf转图片-->
  113. <dependency>
  114. <groupId>org.icepdf.os</groupId>
  115. <artifactId>icepdf-core</artifactId>
  116. <version>6.1.2</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.aliyun.oss</groupId>
  120. <artifactId>aliyun-sdk-oss</artifactId>
  121. <version>2.8.3</version>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. <configuration>
  130. <!--微服务模式下修改为true,跳过SpringBoot启动打包插件,否则微服务模块无法引用-->
  131. <skip>${skip.springboot.maven}</skip>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>