pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <parent>
  6. <groupId>org.dromara</groupId>
  7. <artifactId>ruoyi-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruoyi-common-web</artifactId>
  12. <description>
  13. ruoyi-common-web web服务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.dromara</groupId>
  18. <artifactId>ruoyi-common-core</artifactId>
  19. </dependency>
  20. <!-- SpringBoot Web容器 -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>spring-boot-starter-tomcat</artifactId>
  27. <groupId>org.springframework.boot</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- web 容器使用 undertow 性能更强 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-undertow</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.undertow</groupId>
  38. <artifactId>undertow-core</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.undertow</groupId>
  42. <artifactId>undertow-servlet</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.undertow</groupId>
  46. <artifactId>undertow-websockets-jsr</artifactId>
  47. </dependency>
  48. <!-- SpringBoot Actuator -->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-actuator</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba.cloud</groupId>
  55. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>net.dreamlu</groupId>
  60. <artifactId>mica-metrics</artifactId>
  61. <version>2.7.6</version>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>net.dreamlu</groupId>
  65. <artifactId>mica-core</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. <dependency>
  70. <groupId>net.dreamlu</groupId>
  71. <artifactId>mica-core</artifactId>
  72. <version>2.7.6</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>