pom.xml 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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. <!-- &lt;!&ndash; tencent cloud sdk &ndash;&gt;-->
  130. <!-- <dependency>-->
  131. <!-- <groupId>com.tencentcloudapi</groupId>-->
  132. <!-- <artifactId>tencentcloud-sdk-java-lighthouse</artifactId>-->
  133. <!-- <version>3.1.1114</version> &lt;!&ndash; 或尝试 3.1.1000 &ndash;&gt;-->
  134. <!-- </dependency>-->
  135. <dependency>
  136. <groupId>com.coze</groupId>
  137. <artifactId>coze-api</artifactId>
  138. <version>0.3.1</version>
  139. </dependency>
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.springframework.boot</groupId>
  145. <artifactId>spring-boot-maven-plugin</artifactId>
  146. <version>2.5.15</version>
  147. <configuration>
  148. <includeSystemScope>true</includeSystemScope>
  149. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  150. </configuration>
  151. <executions>
  152. <execution>
  153. <goals>
  154. <goal>repackage</goal>
  155. </goals>
  156. </execution>
  157. </executions>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.apache.maven.plugins</groupId>
  161. <artifactId>maven-war-plugin</artifactId>
  162. <version>3.0.0</version>
  163. <configuration>
  164. <failOnMissingWebXml>false</failOnMissingWebXml>
  165. <warName>${project.artifactId}</warName>
  166. </configuration>
  167. </plugin>
  168. <plugin>
  169. <groupId>org.apache.maven.plugins</groupId>
  170. <artifactId>maven-assembly-plugin</artifactId>
  171. <version>3.4.2</version>
  172. <configuration>
  173. <descriptors>
  174. <descriptor>src/main/assembly/assembly.xml</descriptor>
  175. </descriptors>
  176. </configuration>
  177. <executions>
  178. <execution>
  179. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  180. <phase>package</phase> <!-- bind to the packaging phase -->
  181. <goals>
  182. <goal>single</goal>
  183. </goals>
  184. </execution>
  185. </executions>
  186. </plugin>
  187. <!-- YUI Compressor (CSS/JS压缩)
  188. <plugin>
  189. <groupId>net.alchim31.maven</groupId>
  190. <artifactId>yuicompressor-maven-plugin</artifactId>
  191. <version>1.5.1</version>
  192. <executions>
  193. <execution>
  194. <phase>prepare-package</phase>
  195. <goals>
  196. <goal>compress</goal>
  197. </goals>
  198. </execution>
  199. </executions>
  200. <configuration>
  201. <encoding>UTF-8</encoding>
  202. <jswarn>false</jswarn>
  203. <nosuffix>true</nosuffix>
  204. <linebreakpos>50000</linebreakpos>
  205. <sourceDirectory>src/main/resources/static</sourceDirectory>
  206. <force>true</force>
  207. <includes>
  208. <include>**/*.js</include>
  209. <include>**/*.css</include>
  210. </includes>
  211. <excludes>
  212. <exclude>**/*.min.js</exclude>
  213. <exclude>**/*.min.css</exclude>
  214. <exclude>**/fileinput.js</exclude>
  215. <exclude>**/validate/**</exclude>
  216. <exclude>**/bootstrap-table/**</exclude>
  217. </excludes>
  218. </configuration>
  219. </plugin> -->
  220. </plugins>
  221. <resources>
  222. <resource>
  223. <directory>src/main/java</directory>
  224. <includes>
  225. <include>**/*.xml</include>
  226. </includes>
  227. </resource>
  228. <resource>
  229. <directory>src/main/resources</directory>
  230. <includes>
  231. <include>**/**</include>
  232. </includes>
  233. <excludes>
  234. <exclude>**/start-stop-daemon</exclude>
  235. </excludes>
  236. </resource>
  237. <resource>
  238. <directory>src/main/resources</directory>
  239. <filtering>false</filtering>
  240. <includes>
  241. <include>**/start-stop-daemon</include>
  242. </includes>
  243. </resource>
  244. </resources>
  245. <finalName>easycallcenter365-gui</finalName>
  246. </build>
  247. </project>