| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 | <?xml version="1.0" encoding="UTF-8"?><project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <groupId>com.taais</groupId>        <artifactId>taais-common</artifactId>        <version>${revision}</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>taais-common-web</artifactId>    <description>        taais-common-web web服务    </description>    <dependencies>        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-core</artifactId>        </dependency>        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-json</artifactId>        </dependency>        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-orm</artifactId>        </dependency>        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-redis</artifactId>        </dependency>        <dependency>            <groupId>com.taais</groupId>            <artifactId>taais-common-security</artifactId>        </dependency>        <!-- SpringBoot Web容器 -->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-web</artifactId>            <!--            <exclusions>-->            <!--                <exclusion>-->            <!--                    <artifactId>spring-boot-starter-tomcat</artifactId>-->            <!--                    <groupId>org.springframework.boot</groupId>-->            <!--                </exclusion>-->            <!--            </exclusions>-->        </dependency>        <!-- web 容器使用 undertow 性能更强 -->        <!--        <dependency>-->        <!--            <groupId>org.springframework.boot</groupId>-->        <!--            <artifactId>spring-boot-starter-undertow</artifactId>-->        <!--        </dependency>-->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-actuator</artifactId>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-captcha</artifactId>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-crypto</artifactId>        </dependency>        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>transmittable-thread-local</artifactId>        </dependency>    </dependencies></project>
 |