<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <artifactId>erupt-excel</artifactId>
    <name>erupt-excel</name>
    <description>excel module</description>

    <parent>
        <groupId>com.github.xujiaji.erupt</groupId>
        <artifactId>erupt</artifactId>
        <version>1.13.3</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <properties>
        <poi.version>5.5.0</poi.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.github.xujiaji.erupt</groupId>
            <artifactId>erupt-core</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>${poi.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>${poi.version}</version>
        </dependency>
        <dependency>
            <groupId>jakarta.transaction</groupId>
            <artifactId>jakarta.transaction-api</artifactId>
        </dependency>
    </dependencies>
</project>
