pom.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.sundot.airport</groupId>
  8. <artifactId>airport</artifactId>
  9. <version>3.9.0</version>
  10. </parent>
  11. <artifactId>airport-exam</artifactId>
  12. <description>
  13. 答题模块
  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. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.alibaba</groupId>
  33. <artifactId>fastjson</artifactId>
  34. </dependency>
  35. </dependencies>
  36. </project>