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.
91 lines
3.2 KiB
91 lines
3.2 KiB
<?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>
|
|
|
|
<parent>
|
|
<artifactId>common</artifactId>
|
|
<groupId>com.zhengqing</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>web</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<version>${revision}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.zhengqing</groupId>
|
|
<artifactId>base</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- SpringBoot Web -->
|
|
<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>
|
|
<!-- SpringBoot使用Undertow代替tomcat -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
|
|
<!-- </dependency>-->
|
|
|
|
<!-- 作参数校验使用 -->
|
|
<!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
|
|
<dependency>
|
|
<groupId>org.hibernate.validator</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
<version>6.2.3.Final</version>
|
|
</dependency>
|
|
|
|
<!-- 服务失败重试: 需@EnableRetry开启 -->
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.retry/spring-retry -->
|
|
<dependency>
|
|
<groupId>org.springframework.retry</groupId>
|
|
<artifactId>spring-retry</artifactId>
|
|
</dependency>
|
|
|
|
<!-- freemarker:代码生成模板引擎 -->
|
|
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
|
|
<dependency>
|
|
<groupId>org.freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 读取yml文件 -->
|
|
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
<version>1.30</version>
|
|
</dependency>
|
|
|
|
<!-- http -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpcore</artifactId>
|
|
<version>4.4.10</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpmime</artifactId>
|
|
<version>4.5.6</version>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|
|
|