<?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>
        <artifactId>jiangyin-parent</artifactId>
        <groupId>com.vortex.jiangyin</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <properties>
        <jiangyin.version>1.0-SNAPSHOT</jiangyin.version>
    </properties>


    <artifactId>implement-starter</artifactId>
    <version>1.0-SNAPSHOT</version>
    <name>jiangyin-park-implement-starter</name>
    <description>实现类的基础配置</description>

    <dependencies>
        <dependency>
            <groupId>io.swagger</groupId>
            <artifactId>swagger-annotations</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-processor</artifactId>
        </dependency>

        <dependency>
            <groupId>org.modelmapper</groupId>
            <artifactId>modelmapper</artifactId>
        </dependency>

        <!-- mybatis plus -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
        </dependency>

        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-extension</artifactId>
        </dependency>
        <!-- end of mybatis plus-->

        <dependency>
            <groupId>com.vortex.jiangyin</groupId>
            <artifactId>commons</artifactId>
            <version>${jiangyin.version}</version>
        </dependency>
    </dependencies>


</project>
