1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <groupId>cn.itlym.platform</groupId>
- <artifactId>uaa-infrastructure</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>uaa-storage-mysql</artifactId>
- <description>持久化存储 mysql 实现(这里选用 jdbc、hibernate、mybatis都不会对业务模块产生影响,自由切换)</description>
- <dependencies>
- <!-- 持久层定义 -->
- <dependency>
- <groupId>cn.itlym.platform</groupId>
- <artifactId>uaa-storage</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- <!-- mysql 相关依赖 -->
- <dependency>
- <groupId>cn.itlym.platform</groupId>
- <artifactId>shoulder-platform-starter-db</artifactId>
- </dependency>
- </dependencies>
- </project>
|