1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?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">
- <parent>
- <artifactId>jetlinks-components</artifactId>
- <groupId>org.jetlinks.pro</groupId>
- <version>1.20.0-SNAPSHOT</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>io-component</artifactId>
- <dependencies>
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.11.0</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework</groupId>
- <artifactId>reactor-excel</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>3.1.0</version>
- <exclusions>
- <exclusion>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml-schemas</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webflux</artifactId>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-core</artifactId>
- <version>${hsweb.framework.version}</version>
- </dependency>
- <dependency>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty</artifactId>
- </dependency>
- <dependency>
- <groupId>org.jetlinks</groupId>
- <artifactId>jetlinks-core</artifactId>
- <version>${jetlinks.version}</version>
- </dependency>
- <dependency>
- <groupId>org.hswebframework.web</groupId>
- <artifactId>hsweb-commons-crud</artifactId>
- <version>${hsweb.framework.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>configure-component</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.jetlinks.pro</groupId>
- <artifactId>test-component</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|