pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <!-- SpringBoot Actuator -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-actuator</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba.cloud</groupId>
  43. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>net.dreamlu</groupId>
  48. <artifactId>mica-metrics</artifactId>
  49. <version>2.7.6</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>net.dreamlu</groupId>
  53. <artifactId>mica-core</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.dreamlu</groupId>
  59. <artifactId>mica-core</artifactId>
  60. <version>2.7.6</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. </dependencies>
  64. </project>