pom.xml 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>4.7.9</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- SpringBoot集成thymeleaf模板 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  21. </dependency>
  22. <!-- spring-boot-devtools -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-devtools</artifactId>
  26. <optional>true</optional> <!-- 表示依赖不会传递 -->
  27. </dependency>
  28. <!-- swagger3-->
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-boot-starter</artifactId>
  32. </dependency>
  33. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-models</artifactId>
  37. <version>1.6.2</version>
  38. </dependency>
  39. <!-- Mysql驱动包 -->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- 核心模块-->
  45. <dependency>
  46. <groupId>com.ruoyi</groupId>
  47. <artifactId>ruoyi-framework</artifactId>
  48. </dependency>
  49. <!-- &lt;!&ndash; 定时任务&ndash;&gt;-->
  50. <!-- <dependency>-->
  51. <!-- <groupId>com.ruoyi</groupId>-->
  52. <!-- <artifactId>ruoyi-quartz</artifactId>-->
  53. <!-- </dependency>-->
  54. <!-- 代码生成-->
  55. <dependency>
  56. <groupId>com.ruoyi</groupId>
  57. <artifactId>ruoyi-generator</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>link.thingscloud</groupId>
  61. <artifactId>freeswitch-esl</artifactId>
  62. <version>1.3</version>
  63. <scope>system</scope>
  64. <systemPath>${project.basedir}/src/main/resources/lib/freeswitch-esl-1.3.jar</systemPath>
  65. </dependency>
  66. <!-- add netty -->
  67. <dependency>
  68. <groupId>io.netty</groupId>
  69. <artifactId>netty-all</artifactId>
  70. <version>4.1.33.Final</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>io.netty</groupId>
  74. <artifactId>netty-transport-native-epoll</artifactId>
  75. <version>4.1.33.Final</version>
  76. <classifier>linux-x86_64</classifier>
  77. </dependency>
  78. <!-- add openssl -->
  79. <dependency>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty-tcnative-boringssl-static</artifactId>
  82. <version>2.0.20.Final</version>
  83. <classifier>linux-x86_64</classifier>
  84. </dependency>
  85. <!-- JWT -->
  86. <dependency>
  87. <groupId>com.auth0</groupId>
  88. <artifactId>java-jwt</artifactId>
  89. <version>3.10.3</version>
  90. </dependency>
  91. <!-- aliyun tts -->
  92. <dependency>
  93. <groupId>com.aliyun</groupId>
  94. <artifactId>aliyun-java-sdk-core</artifactId>
  95. <version>4.6.4</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.java-websocket</groupId>
  99. <artifactId>Java-WebSocket</artifactId>
  100. <version>1.5.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-exec</artifactId>
  105. <version>1.4.0</version>
  106. </dependency>
  107. <!-- &lt;!&ndash; AWS SDK for Bedrock &ndash;&gt;-->
  108. <!-- <dependency>-->
  109. <!-- <groupId>software.amazon.awssdk</groupId>-->
  110. <!-- <artifactId>bedrockruntime</artifactId>-->
  111. <!-- <version>2.25.0</version>-->
  112. <!-- </dependency>-->
  113. <!-- &lt;!&ndash; OpenAI 官方客户端 &ndash;&gt;-->
  114. <!-- <dependency>-->
  115. <!-- <groupId>com.openai</groupId>-->
  116. <!-- <artifactId>openai-java-core</artifactId>-->
  117. <!-- <version>2.6.0</version>-->
  118. <!-- </dependency>-->
  119. <dependency>
  120. <groupId>com.aliyun</groupId>
  121. <artifactId>aliyun-java-sdk-core</artifactId>
  122. <version>4.6.4</version>
  123. </dependency>
  124. <!-- <dependency>-->
  125. <!-- <groupId>com.aliyun</groupId>-->
  126. <!-- <artifactId>cloudfw20171207</artifactId>-->
  127. <!-- <version>8.0.2</version>-->
  128. <!-- </dependency>-->
  129. <!-- tencent cloud sdk -->
  130. <dependency>
  131. <groupId>com.tencentcloudapi</groupId>
  132. <artifactId>tencentcloud-sdk-java-lighthouse</artifactId>
  133. <version>3.1.1114</version> <!-- 或尝试 3.1.1000 -->
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <plugins>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. <version>2.5.15</version>
  142. <configuration>
  143. <includeSystemScope>true</includeSystemScope>
  144. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  145. </configuration>
  146. <executions>
  147. <execution>
  148. <goals>
  149. <goal>repackage</goal>
  150. </goals>
  151. </execution>
  152. </executions>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-war-plugin</artifactId>
  157. <version>3.0.0</version>
  158. <configuration>
  159. <failOnMissingWebXml>false</failOnMissingWebXml>
  160. <warName>${project.artifactId}</warName>
  161. </configuration>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-assembly-plugin</artifactId>
  166. <version>3.4.2</version>
  167. <configuration>
  168. <descriptors>
  169. <descriptor>src/main/assembly/assembly.xml</descriptor>
  170. </descriptors>
  171. </configuration>
  172. <executions>
  173. <execution>
  174. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  175. <phase>package</phase> <!-- bind to the packaging phase -->
  176. <goals>
  177. <goal>single</goal>
  178. </goals>
  179. </execution>
  180. </executions>
  181. </plugin>
  182. <!-- YUI Compressor (CSS/JS压缩)
  183. <plugin>
  184. <groupId>net.alchim31.maven</groupId>
  185. <artifactId>yuicompressor-maven-plugin</artifactId>
  186. <version>1.5.1</version>
  187. <executions>
  188. <execution>
  189. <phase>prepare-package</phase>
  190. <goals>
  191. <goal>compress</goal>
  192. </goals>
  193. </execution>
  194. </executions>
  195. <configuration>
  196. <encoding>UTF-8</encoding>
  197. <jswarn>false</jswarn>
  198. <nosuffix>true</nosuffix>
  199. <linebreakpos>50000</linebreakpos>
  200. <sourceDirectory>src/main/resources/static</sourceDirectory>
  201. <force>true</force>
  202. <includes>
  203. <include>**/*.js</include>
  204. <include>**/*.css</include>
  205. </includes>
  206. <excludes>
  207. <exclude>**/*.min.js</exclude>
  208. <exclude>**/*.min.css</exclude>
  209. <exclude>**/fileinput.js</exclude>
  210. <exclude>**/validate/**</exclude>
  211. <exclude>**/bootstrap-table/**</exclude>
  212. </excludes>
  213. </configuration>
  214. </plugin> -->
  215. </plugins>
  216. <resources>
  217. <resource>
  218. <directory>src/main/java</directory>
  219. <includes>
  220. <include>**/*.xml</include>
  221. </includes>
  222. </resource>
  223. <resource>
  224. <directory>src/main/resources</directory>
  225. <includes>
  226. <include>**/**</include>
  227. </includes>
  228. <excludes>
  229. <exclude>**/start-stop-daemon</exclude>
  230. </excludes>
  231. </resource>
  232. <resource>
  233. <directory>src/main/resources</directory>
  234. <filtering>false</filtering>
  235. <includes>
  236. <include>**/start-stop-daemon</include>
  237. </includes>
  238. </resource>
  239. </resources>
  240. <finalName>easycallcenter365-gui</finalName>
  241. </build>
  242. </project>