<?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>
        <groupId>com.ohos.connect</groupId>
        <artifactId>devicecloud-modules</artifactId>
        <version>1.0.0</version>
    </parent>

    <artifactId>devicecloud-module-dev</artifactId>
    <packaging>jar</packaging>
    <description>开发工具插件</description>

    <dependencies>
        <!-- 每个插件都要引入自己的对外接口 -->
        <dependency>
            <groupId>com.ohos.connect</groupId>
            <artifactId>devicecloud-module-dev-api</artifactId>
        </dependency>

        <!-- 引入登录鉴权接口,用于获取登录用户 -->
        <dependency>
            <groupId>com.ohos.connect</groupId>
            <artifactId>devicecloud-module-auth-api</artifactId>
        </dependency>




    </dependencies>
</project>