pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.zksy</groupId>
  7. <artifactId>pipe-ner-server</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- <groupId>org.example</groupId>-->
  11. <artifactId>zk-api-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-test</artifactId>
  21. <scope>test</scope>
  22. </dependency>
  23. <!--common-->
  24. <dependency>
  25. <groupId>com.zksy</groupId>
  26. <artifactId>zk-common</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-web</artifactId>
  32. </dependency>
  33. <!--数据库-->
  34. <dependency>
  35. <groupId>cn.com.kingbase</groupId>
  36. <artifactId>kingbase8</artifactId>
  37. <version>8.6.0</version>
  38. </dependency>
  39. <!--mybatis-->
  40. <dependency>
  41. <groupId>com.baomidou</groupId>
  42. <artifactId>mybatis-plus-boot-starter</artifactId>
  43. </dependency>
  44. <!--nacos 服务注册发现-->
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  48. </dependency>
  49. <!--负载均衡-->
  50. <dependency>
  51. <groupId>org.springframework.cloud</groupId>
  52. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  53. </dependency>
  54. <!--统一配置管理-->
  55. <dependency>
  56. <groupId>com.alibaba.cloud</groupId>
  57. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  58. </dependency>
  59. <!--加载bootstrap-->
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  63. </dependency>
  64. <!--redis-->
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. </dependency>
  69. <!--sentinel-->
  70. <dependency>
  71. <groupId>com.alibaba.cloud</groupId>
  72. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  73. </dependency>
  74. <!--websocket-->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-websocket</artifactId>
  78. </dependency>
  79. <!-- 阿里云发送短信服务-->
  80. <dependency>
  81. <groupId>com.aliyun</groupId>
  82. <artifactId>alibabacloud-dysmsapi20170525</artifactId>
  83. <version>4.0.3</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.zksy</groupId>
  87. <artifactId>net-device</artifactId>
  88. <version>1.0.0</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>fastjson</artifactId>
  93. <version>1.2.54</version>
  94. </dependency>
  95. </dependencies>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-maven-plugin</artifactId>
  101. <configuration>
  102. <classifier>exec</classifier>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>