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-jjyl-business</artifactId> <version>${revision}</version> </parent>
<artifactId>iec-jjyl-business-api</artifactId> <packaging>jar</packaging>
<dependencies> <!--core 工具类--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-jjyl-common-core</artifactId> </dependency> <!--feign 工具类--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-jjyl-common-feign</artifactId> </dependency> <!--mybatis 依赖--> <dependency> <groupId>com.iec</groupId> <artifactId>iec-jjyl-common-mybatis</artifactId> </dependency> <!-- excel 导入导出 https://github.com/pig-mesh/excel-spring-boot-starter --> <dependency> <groupId>com.pig4cloud.excel</groupId> <artifactId>excel-spring-boot-starter</artifactId> </dependency> </dependencies></project>
|