<?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>cn.stylefeng.roses</groupId>
        <artifactId>kernel-o-monitor</artifactId>
        <version>7.0.1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>monitor-sdk-system-info</artifactId>

    <packaging>jar</packaging>

    <dependencies>

        <!--监控模块的的api-->
        <dependency>
            <groupId>cn.stylefeng.roses</groupId>
            <artifactId>monitor-api</artifactId>
            <version>7.0.1</version>
        </dependency>

        <!--定时任务的api-->
        <dependency>
            <groupId>cn.stylefeng.roses</groupId>
            <artifactId>timer-api</artifactId>
            <version>7.0.1</version>
        </dependency>

        <!--硬件信息获取-->
        <dependency>
            <groupId>com.github.oshi</groupId>
            <artifactId>oshi-core</artifactId>
            <version>${oshi.version}</version>
        </dependency>

    </dependencies>

</project>
