pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>aegis-command</artifactId>
  7. <groupId>com.aegis</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>aegis-camera</artifactId>
  12. <description>
  13. camera摄像头模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.aegis</groupId>
  19. <artifactId>aegis-common</artifactId>
  20. </dependency>
  21. <!-- 系统模块,复用组织/用户等能力 -->
  22. <dependency>
  23. <groupId>com.aegis</groupId>
  24. <artifactId>aegis-system</artifactId>
  25. </dependency>
  26. <!-- MyBatis-Plus -->
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. </dependency>
  31. <!-- 测试依赖 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-test</artifactId>
  35. <scope>test</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <scope>provided</scope>
  41. <optional>true</optional>
  42. </dependency>
  43. </dependencies>
  44. </project>