pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>cn.iocoder.boot</groupId>
  7. <artifactId>yudao-framework</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yudao-common</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${artifactId}</name>
  14. <description>定义基础 pojo 类、枚举、工具类等等</description>
  15. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  16. <dependencies>
  17. <!-- Spring 核心 -->
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-core</artifactId>
  21. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework</groupId>
  25. <artifactId>spring-expression</artifactId>
  26. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-aop</artifactId>
  31. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  32. </dependency>
  33. <dependency>
  34. <groupId>org.aspectj</groupId>
  35. <artifactId>aspectjweaver</artifactId>
  36. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  37. </dependency>
  38. <!-- Web 相关 -->
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-web</artifactId>
  42. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  43. </dependency>
  44. <dependency>
  45. <groupId>jakarta.servlet</groupId>
  46. <artifactId>jakarta.servlet-api</artifactId>
  47. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  48. </dependency>
  49. <dependency>
  50. <groupId>io.swagger</groupId>
  51. <artifactId>swagger-annotations</artifactId>
  52. <scope>provided</scope> <!-- 设置为 provided,主要是 PageParam 使用到 -->
  53. </dependency>
  54. <!-- 监控相关 -->
  55. <dependency>
  56. <groupId>org.apache.skywalking</groupId>
  57. <artifactId>apm-toolkit-trace</artifactId>
  58. </dependency>
  59. <!-- 工具类相关 -->
  60. <dependency>
  61. <groupId>org.projectlombok</groupId>
  62. <artifactId>lombok</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.mapstruct</groupId>
  66. <artifactId>mapstruct</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mapstruct</groupId>
  70. <artifactId>mapstruct-jdk8</artifactId> <!-- use mapstruct-jdk8 for Java 8 or higher -->
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mapstruct</groupId>
  74. <artifactId>mapstruct-processor</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hutool</groupId>
  78. <artifactId>hutool-all</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.guava</groupId>
  82. <artifactId>guava</artifactId>
  83. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  84. </dependency>
  85. <dependency>
  86. <groupId>com.fasterxml.jackson.core</groupId>
  87. <artifactId>jackson-databind</artifactId>
  88. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  89. </dependency>
  90. <dependency>
  91. <groupId>com.fasterxml.jackson.core</groupId>
  92. <artifactId>jackson-core</artifactId>
  93. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  94. </dependency>
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-api</artifactId>
  98. <scope>provided</scope> <!-- 设置为 provided,只有工具类需要使用到 -->
  99. </dependency>
  100. <dependency>
  101. <groupId>jakarta.validation</groupId>
  102. <artifactId>jakarta.validation-api</artifactId>
  103. <scope>provided</scope> <!-- 设置为 provided,主要是 PageParam 使用到 -->
  104. </dependency>
  105. </dependencies>
  106. </project>