1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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>
- <groupId>com.xmnk</groupId>
- <artifactId>springboot-base</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>springboot-base</name>
- <description>Demo project for Spring Boot</description>
- <!--继承信息-->
- <parent>
- <groupId>com.xmnk</groupId>
- <artifactId>springboot-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <dependencies>
- <!--依赖其他子模块-->
- <!-- <dependency>-->
- <!-- <groupId>com.xmnk</groupId>-->
- <!-- <artifactId>springboot-function</artifactId>-->
- <!-- <version>0.0.1-SNAPSHOT</version>-->
- <!-- </dependency>-->
- </dependencies>
- <build>
- <plugins>
- <!-- <plugin>-->
- <!-- <groupId>org.springframework.boot</groupId>-->
- <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
- <!-- </plugin>-->
- <!-- mybatis generator自动生成代码 -->
- <plugin>
- <groupId>org.mybatis.generator</groupId>
- <artifactId>mybatis-generator-maven-plugin</artifactId>
- <version>1.3.2</version>
- <configuration>
- <verbose>true</verbose>
- <overwrite>true</overwrite>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.20</version>
- </dependency>
- <dependency>
- <groupId>tk.mybatis</groupId>
- <artifactId>mapper</artifactId>
- <version>4.0.0</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
- </project>
|