pom.xml 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.tydic.fs</groupId>
  5. <artifactId>easycallcenter365</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <name>call-center</name>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.3.3.RELEASE</version>
  12. <relativePath/>
  13. </parent>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
  17. <proguard.version>7.0.0</proguard.version>
  18. <proguard.maven.plugin.version>2.3.1</proguard.maven.plugin.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-jdbc</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <version>1.16.4</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>redis.clients</groupId>
  44. <artifactId>jedis</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.data</groupId>
  48. <artifactId>spring-data-redis</artifactId>
  49. </dependency>
  50. <!-- 监控和管理生产环境的模块 -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-actuator</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.squareup.okhttp3</groupId>
  57. <artifactId>okhttp</artifactId>
  58. <version>3.14.9</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.aliyun</groupId>
  62. <artifactId>aliyun-java-sdk-core</artifactId>
  63. <version>4.6.4</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-lang</groupId>
  72. <artifactId>commons-lang</artifactId>
  73. <version>2.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-io</artifactId>
  78. <version>1.3.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba</groupId>
  87. <artifactId>fastjson</artifactId>
  88. <version>1.1.43</version>
  89. </dependency>
  90. <!-- add netty -->
  91. <dependency>
  92. <groupId>io.netty</groupId>
  93. <artifactId>netty-all</artifactId>
  94. <version>4.1.33.Final</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.netty</groupId>
  98. <artifactId>netty-transport-native-epoll</artifactId>
  99. <version>4.1.33.Final</version>
  100. <classifier>linux-x86_64</classifier>
  101. </dependency>
  102. <!-- add openssl -->
  103. <dependency>
  104. <groupId>io.netty</groupId>
  105. <artifactId>netty-tcnative-boringssl-static</artifactId>
  106. <version>2.0.20.Final</version>
  107. <classifier>linux-x86_64</classifier>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.google.guava</groupId>
  111. <artifactId>guava</artifactId>
  112. <version>16.0.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-websocket</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>javax.servlet</groupId>
  120. <artifactId>jstl</artifactId>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.thoughtworks.xstream</groupId>
  124. <artifactId>xstream</artifactId>
  125. <version>1.4.7</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>net.sf.json-lib</groupId>
  129. <artifactId>json-lib</artifactId>
  130. <version>2.1</version>
  131. <classifier>jdk15</classifier>
  132. </dependency>
  133. <dependency>
  134. <groupId>xom</groupId>
  135. <artifactId>xom</artifactId>
  136. <version>1.2.5</version>
  137. <type>jar</type>
  138. <scope>compile</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>com.google.code.gson</groupId>
  142. <artifactId>gson</artifactId>
  143. <version>2.10.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework.boot</groupId>
  147. <artifactId>spring-boot-test</artifactId>
  148. </dependency>
  149. <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka -->
  150. <dependency>
  151. <groupId>org.springframework.kafka</groupId>
  152. <artifactId>spring-kafka</artifactId>
  153. <version>2.5.5.RELEASE</version>
  154. </dependency>
  155. <!-- <dependency>-->
  156. <!-- <groupId>org.mybatis</groupId>-->
  157. <!-- <artifactId>mybatis</artifactId>-->
  158. <!-- <version>3.1.1</version>-->
  159. <!-- </dependency>-->
  160. <dependency>
  161. <groupId>org.mybatis.spring.boot</groupId>
  162. <artifactId>mybatis-spring-boot-starter</artifactId>
  163. <version>2.1.3</version>
  164. </dependency>
  165. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  166. <dependency>
  167. <groupId>com.auth0</groupId>
  168. <artifactId>java-jwt</artifactId>
  169. <version>3.10.3</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.commons</groupId>
  173. <artifactId>commons-lang3</artifactId>
  174. </dependency>
  175. <dependency>
  176. <groupId>link.thingscloud</groupId>
  177. <artifactId>freeswitch-esl</artifactId>
  178. <version>1.3.release</version>
  179. <scope>system</scope>
  180. <systemPath>${project.basedir}/thirdparty/freeswitch-esl-1.3.jar</systemPath>
  181. </dependency>
  182. <dependency>
  183. <groupId>com.neovisionaries</groupId>
  184. <artifactId>nv-websocket-client</artifactId>
  185. <version>2.9</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>com.coze</groupId>
  189. <artifactId>coze-api</artifactId>
  190. <version>0.3.1</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>com.nimbusds</groupId>
  194. <artifactId>nimbus-jose-jwt</artifactId>
  195. <version>8.16</version>
  196. </dependency>
  197. <!-- &lt;!&ndash; FreeSWITCH Java ESL 核心依赖 &ndash;&gt;-->
  198. <!-- <dependency>-->
  199. <!-- <groupId>org.freeswitch.esl.client</groupId>-->
  200. <!-- <artifactId>org.freeswitch.esl.client</artifactId>-->
  201. <!-- <version>0.9.2</version>-->
  202. <!-- </dependency>-->
  203. <dependency>
  204. <groupId>cn.hutool</groupId>
  205. <artifactId>hutool-all</artifactId>
  206. <version>5.8.31</version>
  207. </dependency>
  208. </dependencies>
  209. <build>
  210. <finalName>${project.artifactId}</finalName>
  211. <directory>${project.basedir}/target</directory>
  212. <plugins>
  213. <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-compiler-plugin</artifactId>
  216. <version>${maven.compiler.plugin.version}</version>
  217. <configuration>
  218. <source>${java.version}</source>
  219. <target>${java.version}</target>
  220. </configuration>
  221. </plugin>
  222. <!-- Maven assembly must be run after proguard obfuscation so it take already obfuscated files.-->
  223. <plugin>
  224. <groupId>org.springframework.boot</groupId>
  225. <artifactId>spring-boot-maven-plugin</artifactId>
  226. <configuration>
  227. <includeSystemScope>true</includeSystemScope>
  228. <fork>true</fork>
  229. </configuration>
  230. <executions>
  231. <execution>
  232. <goals>
  233. <goal>repackage</goal>
  234. </goals>
  235. <configuration>
  236. <mainClass>com.telerobot.fs.CallApplication</mainClass>
  237. </configuration>
  238. </execution>
  239. </executions>
  240. </plugin>
  241. </plugins>
  242. </build>
  243. </project>