pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <groupId>com.tofly</groupId>
  7. <artifactId>sxgkproject</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>sxgk</module>
  12. <module>base-service</module>
  13. <module>tofly-test1</module>
  14. </modules>
  15. <dependencyManagement>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <version>1.18.20</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.swagger</groupId>
  25. <artifactId>swagger-annotations</artifactId>
  26. <version>1.5.20</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. </dependencies>
  30. </dependencyManagement>
  31. </project>