pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>com.zksy</groupId>
  12. <artifactId>flammable-gas-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>zksy-system</artifactId>
  29. <version>3.9.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.zksy</groupId>
  33. <artifactId>zk-api-service</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <!--数据库-->
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. </dependency>
  45. <!--mybatis-->
  46. <dependency>
  47. <groupId>com.baomidou</groupId>
  48. <artifactId>mybatis-plus-boot-starter</artifactId>
  49. </dependency>
  50. <!--nacos 服务注册发现-->
  51. <dependency>
  52. <groupId>com.alibaba.cloud</groupId>
  53. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  54. </dependency>
  55. <!--负载均衡-->
  56. <dependency>
  57. <groupId>org.springframework.cloud</groupId>
  58. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  59. </dependency>
  60. <!--统一配置管理-->
  61. <dependency>
  62. <groupId>com.alibaba.cloud</groupId>
  63. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  64. </dependency>
  65. <!--加载bootstrap-->
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  69. </dependency>
  70. <!--sentinel-->
  71. <dependency>
  72. <groupId>com.alibaba.cloud</groupId>
  73. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  74. </dependency>
  75. <!--netty依赖-->
  76. <dependency>
  77. <groupId>io.netty</groupId>
  78. <artifactId>netty-all</artifactId>
  79. </dependency>
  80. <!--websocket-->
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-websocket</artifactId>
  84. </dependency>
  85. </dependencies>
  86. <build>
  87. <finalName>${project.artifactId}</finalName>
  88. <plugins>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>