pom.xml 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>cn.itlym.platform</groupId>
  5. <artifactId>uaa-infrastructure</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>uaa-storage-mysql</artifactId>
  10. <description>持久化存储 mysql 实现(这里选用 jdbc、hibernate、mybatis都不会对业务模块产生影响,自由切换)</description>
  11. <dependencies>
  12. <!-- 持久层定义 -->
  13. <dependency>
  14. <groupId>cn.itlym.platform</groupId>
  15. <artifactId>uaa-storage</artifactId>
  16. <version>1.0-SNAPSHOT</version>
  17. </dependency>
  18. <!-- mysql 相关依赖 -->
  19. <dependency>
  20. <groupId>cn.itlym.platform</groupId>
  21. <artifactId>shoulder-platform-starter-db</artifactId>
  22. </dependency>
  23. </dependencies>
  24. </project>