35 lines
1.2 KiB
XML
35 lines
1.2 KiB
XML
<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>
|
||
<groupId>Educoder</groupId>
|
||
<artifactId>KubernetesMonitor</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>Kubernetes集群资源监控</name>
|
||
<description>获取kubernetes集群的资源使用状况,</description>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>3.8.1</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/io.fabric8/kubernetes-client -->
|
||
<dependency>
|
||
<groupId>io.fabric8</groupId>
|
||
<artifactId>kubernetes-client</artifactId>
|
||
<version>2.6.1</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/com.spotify/docker-client -->
|
||
<dependency>
|
||
<groupId>com.spotify</groupId>
|
||
<artifactId>docker-client</artifactId>
|
||
<version>8.9.0</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</project> |