pom.xml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <!--腾讯短信-->
  17. <dependency>
  18. <groupId>com.tencentcloudapi</groupId>
  19. <artifactId>tencentcloud-sdk-java</artifactId>
  20. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  21. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
  22. <version>3.1.899</version>
  23. </dependency>
  24. <!-- 通用工具-->
  25. <dependency>
  26. <groupId>com.jjt</groupId>
  27. <artifactId>jjt-common</artifactId>
  28. </dependency> <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.jjt</groupId>
  31. <artifactId>jjt-system</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. </dependency>
  37. <!-- SpringBoot Websocket -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-websocket</artifactId>
  41. </dependency>
  42. <!-- 集成elasticsearch start -->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  46. <!-- <version>3.0.4</version>-->
  47. <!-- <exclusions>-->
  48. <!-- <exclusion>-->
  49. <!-- <groupId>org.elasticsearch</groupId>-->
  50. <!-- <artifactId>elasticsearch</artifactId>-->
  51. <!-- </exclusion>-->
  52. <!-- </exclusions>-->
  53. </dependency>
  54. <!-- <dependency>-->
  55. <!-- <groupId>org.elasticsearch</groupId>-->
  56. <!-- <artifactId>elasticsearch</artifactId>-->
  57. <!-- <version>7.17.3</version>-->
  58. <!-- </dependency>-->
  59. <!-- 集成elasticsearch end -->
  60. </dependencies>
  61. </project>