async-excel-springboot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.asyncexcel</groupId> <artifactId>async-excel-springboot-starter</artifactId> <version>1.1.2</version> </dependency>
<?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>async-excel</artifactId> <groupId>com.asyncexcel</groupId> <version>1.1.2</version> </parent> <modelVersion>4.0.0</modelVersion> <packaging>jar</packaging> <artifactId>async-excel-springboot-starter</artifactId> <name>async-excel-springboot-starter</name> <url>https://github.com/2229499815/async-excel.git</url> <description>AsyncExcel base on easy-excel for async</description> <properties> <springboot.version>2.7.0</springboot.version> <baomidou.version>3.5.2</baomidou.version> <mysql.version>8.0.30</mysql.version> </properties> <dependencies> <dependency> <groupId>com.asyncexcel</groupId> <artifactId>async-excel-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${springboot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> <version>${springboot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${springboot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <optional>true</optional> <version>${baomidou.version}</version> </dependency> <!--mysql驱动--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>${mysql.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> <encoding>UTF-8</encoding> <parameters>true</parameters> </configuration> </plugin> </plugins> </build> </project>