<?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>parent</artifactId>
        <groupId>cn.skyisazure.wjjhook</groupId>
        <!-- maven中央仓库 -->
        <version>0.0.3</version>
        <!-- 快照 -->
        <!--    <version>0.0.5-SNAPSHOT</version>-->
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>office-preview-spring-boot-starter</artifactId>
    <!-- 正式版本 -->
    <version>0.0.2</version>
    <!-- 快照版本 -->
<!--    <version>0.0.21-SNAPSHOT</version>-->
    <description>办公文件在线预览服务</description>

    <properties>
<!--        <wjjhook.core.version>0.1.5</wjjhook.core.version>-->
<!--        <wjjhook.core.version>0.1.38-SNAPSHOT</wjjhook.core.version>-->
    </properties>

    <dependencies>
        <!-- openoffice 文档转换 -->
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-local</artifactId>
            <version>${jodconverter-plugin.version}</version>
        </dependency>
        <dependency>
            <groupId>org.jodconverter</groupId>
            <artifactId>jodconverter-remote</artifactId>
            <version>${jodconverter-plugin.version}</version>
        </dependency>
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>${hutool.version}</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
</project>