pom.xml 1.27 KB
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>fw-valhalla</artifactId>
        <groupId>cn.fw</groupId>
        <version>1.0.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <packaging>jar</packaging>
    <artifactId>fw-valhalla-dao</artifactId>

    <dependencies>
        <!-- mybatis -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-core</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-extension</artifactId>
            <optional>true</optional>
        </dependency>
        <!-- fw -->
        <dependency>
            <groupId>cn.fw</groupId>
            <artifactId>fw-valhalla-domain</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.fw</groupId>
            <artifactId>fw-valhalla-common</artifactId>
        </dependency>
    </dependencies>

</project>