pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.tofly</groupId>
  7. <artifactId>tofly-webParent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.tofly</groupId>
  12. <artifactId>sxgkproject</artifactId>
  13. <packaging>pom</packaging>
  14. <version>1.0-SNAPSHOT</version>
  15. <modules>
  16. <module>sxgk</module>
  17. <module>base-service</module>
  18. <module>tofly-test1</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.projectlombok</groupId>
  24. <artifactId>lombok</artifactId>
  25. <version>1.18.20</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.tofly</groupId>
  30. <artifactId>common-redis</artifactId>
  31. <version>1.0.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.swagger</groupId>
  35. <artifactId>swagger-annotations</artifactId>
  36. <version>1.5.20</version>
  37. <scope>compile</scope>
  38. </dependency>
  39. </dependencies>
  40. </dependencyManagement>
  41. </project>