1 Star 0 Fork 1

yuxiaobin / mybatis-plus-sample

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
yuxiaobin 提交于 2019-02-19 16:50 . add: mp-boot sample: 0配置
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.yuxiaobin</groupId>
<artifactId>mybatis-plus-sample</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>mybatis-plus-sample</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>core-2.x</module>
<module>core-3.x</module>
<module>mybatis-native</module>
<module>jdbc-sample</module>
<module>test-base</module>
<module>mp-pagination</module>
<module>spring-jpa-sample</module>
<module>pagehelper-sample</module>
<module>mp-boot-2.x</module>
</modules>
</project>
Java
1
https://gitee.com/hadoobing/mybatis-plus-study.git
git@gitee.com:hadoobing/mybatis-plus-study.git
hadoobing
mybatis-plus-study
mybatis-plus-sample
master

搜索帮助