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.
|
|
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.iec</groupId> <artifactId>iec-yyjh-business</artifactId> <version>${revision}</version> </parent>
<artifactId>iec-yyjh-business-biz</artifactId> <name>iec-yyjh-business-biz</name> <packaging>jar</packaging>
<dependencies> <!--文件管理--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-oss</artifactId> </dependency> <!--feign 调用--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-feign</artifactId> </dependency> <!--安全模块--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-security</artifactId> </dependency> <!--日志处理--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-log</artifactId> </dependency> <!--接口文档--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-swagger</artifactId> </dependency> <!-- orm 模块--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> </dependency> <!--注册中心客户端--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> </dependency> <!--配置中心客户端--> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> </dependency> <!-- 阿里云短信下发 --> <dependency> <groupId>io.springboot.sms</groupId> <artifactId>aliyun-sms-spring-boot-starter</artifactId> </dependency> <!--xss 过滤--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-common-xss</artifactId> </dependency> <!--undertow容器--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency> <dependency> <groupId>com.iec</groupId> <artifactId>iec-yyjh-business-api</artifactId> <version>1.0-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> </plugin> </plugins> <resources> <!-- 构建排除resource下 jar 和 ttf 文件 --> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <excludes> <exclude>**/*.jar</exclude> <exclude>**/*.ttf</exclude> </excludes> </resource> </resources> </build></project>
|