pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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-json</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. <dependency>
  64. <groupId>com.baomidou</groupId>
  65. <artifactId>mybatis-plus-core</artifactId>
  66. <version>3.5.12</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. </dependencies>
  70. </project>