| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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>
- <groupId>com.zzsmart.qomo</groupId>
- <artifactId>qomo-kn-forecast</artifactId>
- <version>${revision}</version>
- </parent>
- <artifactId>qomo-kn-cost-manage</artifactId>
- <dependencies>
- <dependency>
- <groupId>org.qomo.boot</groupId>
- <artifactId>qomo-system-biz</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.auto.service</groupId>
- <artifactId>auto-service</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.zzsmart.qomo</groupId>
- <artifactId>qomo-data-integration</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>RELEASE</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>5.2.3</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>5.2.3</version>
- </dependency>
- <!--自己添加的依赖-->
- <!-- <dependency>-->
- <!-- <groupId>commons-io</groupId>-->
- <!-- <artifactId>commons-io</artifactId>-->
- <!-- <version>2.11.0</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>4.0.1</version> <!-- 请检查并使用最新稳定版本 -->
- </dependency>
-
- </dependencies>
- </project>
|