.flattened-pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.cdm</groupId>
  7. <artifactId>cdm-framework</artifactId>
  8. <version>2.0.0-jdk8-snapshot</version>
  9. </parent>
  10. <groupId>com.cdm</groupId>
  11. <artifactId>cdm-spring-boot-starter-biz-error-code</artifactId>
  12. <version>2.0.0-jdk8-snapshot</version>
  13. <name>${project.artifactId}</name>
  14. <description>错误码 ErrorCode 的自动配置功能,提供如下功能:
  15. 1. 远程读取:项目启动时,从 system-server 服务,读取数据库中的 ErrorCode 错误码,实现错误码的提示可配置;
  16. 2. 自动更新:管理员在管理后台修数据库中的 ErrorCode 错误码时,项目自动从 system-server 服务加载最新的 ErrorCode 错误码;
  17. 3. 自动写入:项目启动时,将项目本地的错误码写到 system-server 服务中,方便管理员在管理后台编辑;</description>
  18. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.cdm</groupId>
  22. <artifactId>cdm-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.cdm</groupId>
  30. <artifactId>cdm-module-system-api</artifactId>
  31. <version>${revision}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>jakarta.validation</groupId>
  35. <artifactId>jakarta.validation-api</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>