pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.zksy</groupId>
  8. <artifactId>pipe-ner-server</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>org.example</groupId>
  12. <artifactId>firefighting-pressure-service</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <properties>
  15. <maven.compiler.source>11</maven.compiler.source>
  16. <maven.compiler.target>11</maven.compiler.target>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <!--common-->
  21. <dependency>
  22. <groupId>com.zksy</groupId>
  23. <artifactId>zk-common</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.zksy</groupId>
  28. <artifactId>zk-api-service</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zksy</groupId>
  33. <artifactId>zksy-system</artifactId>
  34. <version>3.9.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mybatis.spring.boot</groupId>
  38. <artifactId>mybatis-spring-boot-starter-test</artifactId>
  39. <version>3.0.5</version>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <!--数据库-->
  47. <dependency>
  48. <groupId>mysql</groupId>
  49. <artifactId>mysql-connector-java</artifactId>
  50. </dependency>
  51. <!--mybatis-->
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-boot-starter</artifactId>
  55. </dependency>
  56. <!--nacos 服务注册发现-->
  57. <dependency>
  58. <groupId>com.alibaba.cloud</groupId>
  59. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  60. </dependency>
  61. <!--负载均衡-->
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  65. </dependency>
  66. <!--统一配置管理-->
  67. <dependency>
  68. <groupId>com.alibaba.cloud</groupId>
  69. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  70. </dependency>
  71. <!--加载bootstrap-->
  72. <dependency>
  73. <groupId>org.springframework.cloud</groupId>
  74. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  75. </dependency>
  76. <!--sentinel-->
  77. <dependency>
  78. <groupId>com.alibaba.cloud</groupId>
  79. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  80. </dependency>
  81. <!--netty依赖-->
  82. <dependency>
  83. <groupId>io.netty</groupId>
  84. <artifactId>netty-all</artifactId>
  85. </dependency>
  86. <!--websocket-->
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-websocket</artifactId>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <finalName>${project.artifactId}</finalName>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>