generated from root/miduo_server
152 lines
5.2 KiB
XML
152 lines
5.2 KiB
XML
<?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.deshen</groupId>
|
||
<artifactId>gm_tw_admin</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
|
||
<!--java的编译级别-->
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<java.version>1.8</java.version>
|
||
</properties>
|
||
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>1.4.3.RELEASE</version>
|
||
</parent>
|
||
|
||
<dependencies>
|
||
<!--允许不严格的html5格式出现-->
|
||
<dependency>
|
||
<groupId>net.sourceforge.nekohtml</groupId>
|
||
<artifactId>nekohtml</artifactId>
|
||
<version>1.9.22</version>
|
||
</dependency>
|
||
<!--Spring Boot的核心启动器,包含了自动配置、日志和YAML-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter</artifactId>
|
||
</dependency>
|
||
|
||
<!--支持全栈式Web开发,包括Tomcat和spring-webmvc-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
|
||
<!--支持Thymeleaf模板引擎,包括与Spring的集成-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
|
||
<!--用来热部署-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-devtools</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<!--糊涂工具-->
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>4.0.12</version>
|
||
</dependency>
|
||
|
||
|
||
<!--数据库访问,支持JPA(Java Persistence API),包括spring-data-jpa、spring-orm、Hibernate-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||
</dependency>
|
||
<!--支持JDBC数据库-->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
<version>2.7</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.data</groupId>
|
||
<artifactId>spring-data-redis</artifactId>
|
||
<version>1.8.7.RELEASE</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>redis.clients</groupId>
|
||
<artifactId>jedis</artifactId>
|
||
<version>2.9.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.mongodb</groupId>
|
||
<artifactId>mongo-java-driver</artifactId>
|
||
<version>3.4.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.data</groupId>
|
||
<artifactId>spring-data-mongodb</artifactId>
|
||
<version>1.10.7.RELEASE</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<artifactId>mongo-java-driver</artifactId>
|
||
<groupId>org.mongodb</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.thrift</groupId>
|
||
<artifactId>libthrift</artifactId>
|
||
<version>0.9.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.35</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.37</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi</artifactId>
|
||
<version>3.14</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>3.14</version>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<configuration>
|
||
<mainClass>com.Application</mainClass>
|
||
</configuration>
|
||
<!--<dependencies>-->
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework</groupId>-->
|
||
<!--<artifactId>springloaded</artifactId>-->
|
||
<!--</dependency>-->
|
||
<!--</dependencies>-->
|
||
</plugin>
|
||
</plugins>
|
||
|
||
</build>
|
||
|
||
</project> |