| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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.sckw</groupId>
- <artifactId>sckw-common</artifactId>
- <version>1.0.0</version>
- </parent>
- <artifactId>sckw-common-excel</artifactId>
- <version>1.0.0</version>
- <description>核心模块</description>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <easyexcel.version>3.0.5</easyexcel.version>
- <commons-io.version>2.11.0</commons-io.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sckw</groupId>
- <artifactId>sckw-common-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- <!--alibaba EasyExcel导入导出-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- <!--cglib-->
- <dependency>
- <groupId>cglib</groupId>
- <artifactId>cglib</artifactId>
- <exclusions>
- <exclusion>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- </exclusion>
- </exclusions>
- <version>3.3.0</version>
- </dependency>
- <!-- validation -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>org.springframework</groupId>-->
- <!-- <artifactId>spring-core</artifactId>-->
- <!-- <version>6.0.9</version>-->
- <!-- </dependency>-->
- <dependency>
- <groupId>jakarta.validation</groupId>
- <artifactId>jakarta.validation-api</artifactId>
- <!-- <version>2.0.1</version>-->
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- <version>10.1.7</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>${commons-io.version}</version>
- </dependency>
- </dependencies>
- </project>
|