1234567891011121314151617181920212223242526272829303132333435 |
- <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <artifactId>xuecheng-plus-content</artifactId>
- <groupId>com.xuecheng</groupId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <artifactId>xuecheng-plus-content-model</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.xuecheng</groupId>
- <artifactId>xuecheng-plus-base</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <!--存在mybatisplus注解添加相关注解保证不报错-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-annotation</artifactId>
- <version>${mybatis-plus-boot-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-core</artifactId>
- <version>${mybatis-plus-boot-starter.version}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- </dependencies>
- </project>
|