pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.xinghuacuntravel</groupId>
  8. <artifactId>business-mall</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>business-mall-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeesharp.boot</groupId>
  15. <artifactId>jeesharp-spring-boot-starter-mybatis</artifactId>
  16. </dependency>
  17. <!-- Bean 模块依赖 -->
  18. <dependency>
  19. <groupId>com.xinghuacuntravel</groupId>
  20. <artifactId>business-mall-bean</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.xinghuacuntravel</groupId>
  25. <artifactId>business-mall-api</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.xinghuacuntravel</groupId>
  30. <artifactId>business-finance-api</artifactId>
  31. <version>${project.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xinghuacuntravel</groupId>
  35. <artifactId>business-member-api</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. </dependencies>
  39. </project>