2019-12-31 17:16:17 +08:00
|
|
|
|
<?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>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.2.2.RELEASE</version>
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.phy</groupId>
|
|
|
|
|
<artifactId>ebuy</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>ebuy</name>
|
|
|
|
|
<description>Demo project for Spring Boot</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>2.1.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--模板引擎-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ibeetl</groupId>
|
|
|
|
|
<artifactId>beetl</artifactId>
|
2024-02-03 02:11:17 +08:00
|
|
|
|
<version>3.15.13.RELEASE</version>
|
2019-12-31 17:16:17 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
<!--lombok插件是为了方便实体类bean快速生成get set方法,从而不用手动添加
|
|
|
|
|
该插件可以在idea的file–>plugins–>搜索框搜索安装-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.16.10</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--commons-lang3是Apache的Jakarta commons工程下具有一系列公共基础类。
|
|
|
|
|
Apache的Jakarta commons工程项目列表路径:http://commons.apache.org
|
|
|
|
|
Commons基础类包基本上是基于JDK API开发而来,依赖微小,可重用性是Jakarta commons的灵魂所在。
|
|
|
|
|
Lang组件主要是一些工具类,涉及到数组工具类,字符串工具类,字符工具类,数学方面,时间日期工具类,异常,事件等工具类。-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.9</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
|
|
<!--<artifactId>spring‐boot‐starter‐thymeleaf</artifactId>-->
|
|
|
|
|
<!--<version>2.1.6</version>-->
|
|
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/webapp</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2020-01-06 18:26:08 +08:00
|
|
|
|
<!--<resources>-->
|
|
|
|
|
<!--<resource>-->
|
|
|
|
|
<!--<directory>src/main/webapp</directory>-->
|
|
|
|
|
<!--</resource>-->
|
|
|
|
|
<!--<resource>-->
|
|
|
|
|
<!--<directory>src/main/java</directory>-->
|
|
|
|
|
<!--<includes>-->
|
|
|
|
|
<!--<include>**/*.*</include>-->
|
|
|
|
|
<!--</includes>-->
|
|
|
|
|
<!--<excludes>-->
|
|
|
|
|
<!--<exclude>**/*.java</exclude>-->
|
|
|
|
|
<!--</excludes>-->
|
|
|
|
|
<!--<filtering>false</filtering>-->
|
|
|
|
|
<!--</resource>-->
|
|
|
|
|
<!--<resource>-->
|
|
|
|
|
<!--<directory>src/main/resources</directory>-->
|
|
|
|
|
<!--<includes>-->
|
|
|
|
|
<!--<include>**/*.*</include>-->
|
|
|
|
|
<!--</includes>-->
|
|
|
|
|
<!--<filtering>false</filtering>-->
|
|
|
|
|
<!--</resource>-->
|
|
|
|
|
<!--</resources>-->
|
2019-12-31 17:16:17 +08:00
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|