pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.qunzhixinxi</groupId>
  7. <artifactId>hnqz-visual</artifactId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <artifactId>hnqz-sentinel-dashboard</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba.csp</groupId>
  15. <artifactId>sentinel-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.alibaba.csp</groupId>
  19. <artifactId>sentinel-web-servlet</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba.csp</groupId>
  23. <artifactId>sentinel-transport-simple-http</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba.csp</groupId>
  27. <artifactId>sentinel-parameter-flow-control</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba.csp</groupId>
  31. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <!--undertow容器-->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-undertow</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-logging</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>1.2.14</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>commons-lang</groupId>
  53. <artifactId>commons-lang</artifactId>
  54. <version>2.6</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.httpcomponents</groupId>
  58. <artifactId>httpclient</artifactId>
  59. <version>4.5.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpcore</artifactId>
  64. <version>4.4.5</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpasyncclient</artifactId>
  69. <version>4.1.3</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpcore-nio</artifactId>
  74. <version>4.4.6</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <finalName>hnqz-sentinel-dashboard</finalName>
  79. <resources>
  80. <resource>
  81. <directory>src/main/resources</directory>
  82. </resource>
  83. <resource>
  84. <directory>src/main/webapp/</directory>
  85. <excludes>
  86. <exclude>resources/node_modules/**</exclude>
  87. </excludes>
  88. </resource>
  89. </resources>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. </plugin>
  95. <plugin>
  96. <groupId>io.fabric8</groupId>
  97. <artifactId>docker-maven-plugin</artifactId>
  98. <configuration>
  99. <skip>false</skip>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>