pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <artifactId>yudao-module-safe</artifactId>
  7. <groupId>cn.iocoder.boot</groupId>
  8. <version>${revision}</version> <!-- 1. 修改 version 为 ${revision} -->
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging> <!-- 2. 新增 packaging 为 jar -->
  12. <artifactId>yudao-module-safe-biz</artifactId>
  13. <name>${project.artifactId}</name> <!-- 3. 新增 name 为 ${project.artifactId} -->
  14. <description> <!-- 4. 新增 description 为该模块的描述 -->
  15. 安防设备接入模块,主要实现 后端、前端的安防设备管理 等功能。
  16. </description>
  17. <dependencies> <!-- 5. 新增依赖,这里引入的都是比较常用的业务组件、技术组件 -->
  18. <dependency>
  19. <groupId>cn.iocoder.boot</groupId>
  20. <artifactId>yudao-module-safe-api</artifactId>
  21. <version>${revision}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.iocoder.boot</groupId>
  25. <artifactId>yudao-spring-boot-starter-excel</artifactId>
  26. </dependency>
  27. <!-- Web 相关 -->
  28. <dependency>
  29. <groupId>cn.iocoder.boot</groupId>
  30. <artifactId>yudao-spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>cn.iocoder.boot</groupId>
  34. <artifactId>yudao-spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <!-- DB 相关 -->
  37. <dependency>
  38. <groupId>cn.iocoder.boot</groupId>
  39. <artifactId>yudao-spring-boot-starter-mybatis</artifactId>
  40. </dependency>
  41. </dependencies>
  42. </project>