pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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.nexo</groupId>
  7. <artifactId>nexo-visual</artifactId>
  8. <version>1.8.2</version>
  9. </parent>
  10. <artifactId>nexo-sentinel-dashboard</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <sentinel.version>1.8.6</sentinel.version>
  14. <curator.version>4.0.1</curator.version>
  15. </properties>
  16. <dependencies>
  17. <!-- SpringCloud Alibaba Nacos -->
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  21. </dependency>
  22. <!-- SpringCloud Alibaba Nacos Config -->
  23. <dependency>
  24. <groupId>com.alibaba.cloud</groupId>
  25. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba.csp</groupId>
  29. <artifactId>sentinel-core</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba.csp</groupId>
  33. <artifactId>sentinel-web-servlet</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.alibaba.csp</groupId>
  37. <artifactId>sentinel-transport-simple-http</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.alibaba.csp</groupId>
  41. <artifactId>sentinel-parameter-flow-control</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba.csp</groupId>
  45. <artifactId>sentinel-api-gateway-adapter-common</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.nexo</groupId>
  49. <artifactId>nexo-common-web</artifactId>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.apache.logging.log4j</groupId>
  53. <artifactId>log4j-to-slf4j</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <!-- starter-actuator -->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-actuator</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-lang</groupId>
  64. <artifactId>commons-lang</artifactId>
  65. <version>2.6</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>httpclient</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.httpcomponents</groupId>
  73. <artifactId>httpcore</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpasyncclient</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpcore-nio</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>fastjson</artifactId>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <finalName>${project.artifactId}</finalName>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. <version>${spring-boot.version}</version>
  95. <executions>
  96. <execution>
  97. <goals>
  98. <goal>repackage</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>