You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.1 KiB
98 lines
3.1 KiB
<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>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-parent</artifactId> |
|
<version>2.0.2.RELEASE</version> |
|
</parent> |
|
<groupId>com.mengyxu.admin</groupId> |
|
<artifactId>mengyxu_admin</artifactId> |
|
<version>0.0.1</version> |
|
<name>admin</name> |
|
<description>mengyxu-admin</description> |
|
<packaging>jar</packaging> |
|
|
|
<properties> |
|
<mengyxu.core.version>0.0.1</mengyxu.core.version> |
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
|
<mybatis.pagehelper.version>1.2.5</mybatis.pagehelper.version> |
|
<mybatis-spring-boot.version>1.3.2</mybatis-spring-boot.version> |
|
<druid.version>1.1.9</druid.version> |
|
<log4j.version>1.2.17</log4j.version> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>com.mengyxu.core</groupId> |
|
<artifactId>mengyxu_core</artifactId> |
|
<version>${mengyxu.core.version}</version> |
|
</dependency> |
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-web</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<!-- 代码修改之后可以实时生效,该模块在完整的打包环境下运行的时候会被禁用 --> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-devtools</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<!-- Log4j --> |
|
<dependency> |
|
<groupId>log4j</groupId> |
|
<artifactId>log4j</artifactId> |
|
<version>${log4j.version}</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-log4j12</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<!-- spring-boot整合mybatis --> |
|
<dependency> |
|
<groupId>org.mybatis.spring.boot</groupId> |
|
<artifactId>mybatis-spring-boot-starter</artifactId> |
|
<version>${mybatis-spring-boot.version}</version> |
|
</dependency> |
|
<!-- mybatis的pagehelper --> |
|
<dependency> |
|
<groupId>com.github.pagehelper</groupId> |
|
<artifactId>pagehelper-spring-boot-starter</artifactId> |
|
<version>${mybatis.pagehelper.version}</version> |
|
</dependency> |
|
<!-- mysql驱动 --> |
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<scope>runtime</scope> |
|
</dependency> |
|
<!-- alibaba的druid数据库连接池 --> |
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>druid-spring-boot-starter</artifactId> |
|
<version>${druid.version}</version> |
|
</dependency> |
|
|
|
<!-- <dependency> --> |
|
<!-- <groupId>org.apache.commons</groupId> --> |
|
<!-- <artifactId>commons-lang3</artifactId> --> |
|
<!-- </dependency> --> |
|
|
|
</dependencies> |
|
|
|
</project> |