<?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">
|
<parent>
|
<artifactId>demo</artifactId>
|
<groupId>com.ks</groupId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>app</artifactId>
|
|
<packaging>jar</packaging>
|
|
<properties>
|
<java.version>1.8</java.version>
|
<druid.version>1.1.10</druid.version>
|
<mybatis.version>2.0.1</mybatis.version>
|
<seata.version>1.4.1</seata.version>
|
</properties>
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
<groupId>com.yeshi</groupId>
|
<artifactId>utils</artifactId>
|
<version>0.1.5</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-config</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<!--<exclusions>-->
|
<!--<exclusion>-->
|
<!--<groupId>org.springframework.boot</groupId>-->
|
<!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
|
<!--</exclusion>-->
|
<!--</exclusions>-->
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
<!--打包的时候可以不用包进去,别的设施会提供。事实上该依赖理论上可以参与编译,测试,运行等周期。
|
相当于compile,但是打包阶段做了exclude操作-->
|
<!--<scope>provided</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>
|
<exclusion>
|
<groupId>com.vaadin.external.google</groupId>
|
<artifactId>android-json</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
|
<!-- Mybatis -->
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid-spring-boot-starter</artifactId>
|
<version>${druid.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
<version>${mybatis.version}</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.github.penggle/kaptcha -->
|
<dependency>
|
<groupId>com.github.penggle</groupId>
|
<artifactId>kaptcha</artifactId>
|
<version>2.3.2</version>
|
</dependency>
|
|
<!--devtools热部署-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<optional>true</optional>
|
<scope>true</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
|
<dependency>
|
<groupId>org.dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
<version>2.1.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.qcloud</groupId>
|
<artifactId>cmq-http-client</artifactId>
|
<version>1.0.7</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.5</version>
|
</dependency>
|
|
<!-- 分步式任务 -->
|
<dependency>
|
<groupId>com.xuxueli</groupId>
|
<artifactId>xxl-job-core</artifactId>
|
<version>2.1.2</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.4.1</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
<version>4.4.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.8.1</version>
|
</dependency>
|
|
|
|
</dependencies>
|
|
<build>
|
<finalName>app</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<!--热部署配置-->
|
<configuration>
|
<!--fork:如果没有该项配置,整个devtools不会起作用-->
|
<fork>true</fork>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
|
</project>
|