pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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>com.sundot.airport</groupId>
  7. <artifactId>airport</artifactId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>airport-check</artifactId>
  12. <description>
  13. check巡检管理模块
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.sundot.airport</groupId>
  19. <artifactId>airport-common</artifactId>
  20. </dependency>
  21. <!-- 系统模块-->
  22. <dependency>
  23. <groupId>com.sundot.airport</groupId>
  24. <artifactId>airport-system</artifactId>
  25. </dependency>
  26. <!-- lombok-->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <!-- 考勤模块-->
  33. <dependency>
  34. <groupId>com.sundot.airport</groupId>
  35. <artifactId>airport-attendance</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>