pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.hotent</groupId>
  8. <artifactId>eip</artifactId>
  9. <version>8.0.7</version>
  10. </parent>
  11. <artifactId>pricing</artifactId>
  12. <name>pricing</name>
  13. <description>定价管理模块</description>
  14. <dependencies>
  15. <!-- Spring boot 测试 -->
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-test</artifactId>
  19. <scope>test</scope>
  20. </dependency>
  21. <!-- 依赖 base 模块获取基础功能 -->
  22. <dependency>
  23. <groupId>com.hotent</groupId>
  24. <artifactId>base</artifactId>
  25. <version>${parent.version}</version>
  26. </dependency>
  27. <!-- 依赖 uc 模块获取用户信息 -->
  28. <dependency>
  29. <groupId>com.hotent</groupId>
  30. <artifactId>uc</artifactId>
  31. <version>${parent.version}</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <finalName>pricing</finalName>
  36. </build>
  37. </project>