1234567891011121314151617181920212223242526272829303132333435 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.persagy</groupId>
- <artifactId>apm-parent</artifactId>
- <version>3.0.0</version>
- <relativePath>../apm-parent</relativePath>
- </parent>
- <artifactId>apm-mybatis</artifactId>
- <distributionManagement>
- <repository>
- <id>persagy</id>
- <name>releases Repository</name>
- <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
- </repository>
- </distributionManagement>
- <dependencies>
- <dependency>
- <groupId>com.persagy</groupId>
- <artifactId>apm-common</artifactId>
- </dependency>
- <!-- mybatisPlus相关的依赖 start -->
- <!-- mybatisPlus -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
- <version>3.3.2</version>
- </dependency>
- </dependencies>
- </project>
|